CloudFormation resource specification
The AWS CloudFormation resource specification is a JSON-formatted text file that defines the resources and properties that CloudFormation supports. The document is a machine-readable, strongly typed specification that you can use to build tools for creating CloudFormation templates. For example, you can use the specification to build auto completion and validation functionality for CloudFormation templates in your IDE (integrated development environment).
The resource specification is organized as both a single file and as a series of files, where each file contains the definition of one resource type. The single and separated files contain identical information. Depending on the tool and your implementation, use the file or files that work for you.
To download the resource specification, see the following table.
Resource availability may vary by region. To check the availability of a resource in a given region, refer to the resource specification for that region.
Region name |
Region |
Single file |
All files |
---|---|---|---|
US East (Ohio) |
|
||
US East (N. Virginia) |
|
||
US West (N. California) |
|
||
US West (Oregon) |
|
||
Africa (Cape Town) |
|
||
Asia Pacific (Hong Kong) |
|
||
Asia Pacific (Hyderabad) |
|
||
Asia Pacific (Jakarta) |
|
||
Asia Pacific (Malaysia) |
|
||
Asia Pacific (Melbourne) |
|
||
Asia Pacific (Mumbai) |
|
||
Asia Pacific (Osaka) |
|
||
Asia Pacific (Seoul) |
|
||
Asia Pacific (Singapore) |
|
||
Asia Pacific (Sydney) |
|
||
Asia Pacific (Tokyo) |
|
||
Canada (Central) |
|
||
Canada West (Calgary) |
|
||
China (Beijing) |
|
||
China (Ningxia) |
|
||
Europe (Frankfurt) |
|
||
Europe (Ireland) |
|
||
Europe (London) |
|
||
Europe (Milan) |
|
||
Europe (Paris) |
|
||
Europe (Spain) |
|
||
Europe (Stockholm) |
|
||
Europe (Zurich) |
|
||
Israel (Tel Aviv) |
|
||
Middle East (Bahrain) |
|
||
Middle East (UAE) |
|
||
South America (São Paulo) |
|
||
AWS GovCloud (US-East) |
|
||
AWS GovCloud (US-West) |
|
The following example shows the specification for an AWS Key Management Service key resource
(AWS::KMS::Key
). It shows the properties for the AWS::KMS::Key
resource, which properties are required, the type of allowed value for each property, and their
update behavior. For details about the specification, see Specification format.
"AWS::KMS::Key": { "Attributes": { "Arn": { "PrimitiveType": "String" } }, "Documentation": "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-kms-key.html", "Properties": { "Description": { "Documentation": "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-kms-key.html#cfn-kms-key-description", "PrimitiveType": "String", "Required": false, "UpdateType": "Mutable" }, "EnableKeyRotation": { "Documentation": "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-kms-key.html#cfn-kms-key-enablekeyrotation", "PrimitiveType": "Boolean", "Required": false, "UpdateType": "Mutable" }, "Enabled": { "Documentation": "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-kms-key.html#cfn-kms-key-enabled", "PrimitiveType": "Boolean", "Required": false, "UpdateType": "Mutable" }, "KeyPolicy": { "Documentation": "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-kms-key.html#cfn-kms-key-keypolicy", "PrimitiveType": "Json", "Required": true, "UpdateType": "Mutable" }, "KeyUsage": { "Documentation": "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-kms-key.html#cfn-kms-key-keyusage", "PrimitiveType": "String", "Required": false, "UpdateType": "Immutable" } } }