This is the new Amazon CloudFormation Template Reference Guide. Please update your bookmarks and links. For help getting started with CloudFormation, see the Amazon CloudFormation User Guide.
AWS::IoT::Policy
Use the AWS::IoT::Policy resource to declare an Amazon IoT
         policy. For more information about working with Amazon IoT policies, see Authorization in the Amazon IoT Developer Guide.
Syntax
To declare this entity in your Amazon CloudFormation template, use the following syntax:
JSON
{ "Type" : "AWS::IoT::Policy", "Properties" : { "PolicyDocument" :Json, "PolicyName" :String, "Tags" :[ Tag, ... ]} }
YAML
Type: AWS::IoT::Policy Properties: PolicyDocument:JsonPolicyName:StringTags:- Tag
Properties
- PolicyDocument
- 
                    The JSON document that describes the policy. Required: Yes Type: Json Minimum: 1Maximum: 404600Update requires: No interruption 
- PolicyName
- 
                    The policy name. Required: No Type: String Pattern: [\w+=,.@-]+Minimum: 1Maximum: 128Update requires: Replacement 
- Property description not available. - Required: No - Type: Array of Tag - Update requires: No interruption 
Return values
Ref
When you pass the logical ID of this resource to the intrinsic Ref function, Ref returns the policy name. For example:
                        { "Ref": "MyPolicy" }
                    
For more information about using the Ref function, see Ref.
Fn::GetAtt
The Fn::GetAtt intrinsic function returns a value for a specified attribute of this type. The following are the available attributes and sample return values.
For more information about using the Fn::GetAtt intrinsic function, see Fn::GetAtt.
- Arn
- 
                            The Amazon Resource Name (ARN) of the Amazon IoT policy, such as arn:aws:iot:us-east-2:123456789012:policy/MyPolicy.
- Id
- 
                            The name of this policy. 
Examples
The following example declares an Amazon IoT policy. This example grants permission to connect to Amazon IoT with client ID client1.
JSON
{ "AWSTemplateFormatVersion": "2010-09-09", "Resources": { "MyIoTPolicy": { "Type": "AWS::IoT::Policy", "Properties": { "PolicyDocument": { "Version": "2012-10-17", "Statement": [ { "Effect": "Allow", "Action": [ "iot:Connect" ], "Resource": [ "arn:aws:iot:us-east-1:123456789012:client/client1" ] } ] }, "PolicyName": "PolicyName" } } } }
YAML
AWSTemplateFormatVersion: '2010-09-09' Resources: MyIoTPolicy: Type: AWS::IoT::Policy Properties: PolicyDocument: Version: '2012-10-17 ' Statement: - Effect: Allow Action: - iot:Connect Resource: - arn:aws:iot:us-east-1:123456789012:client/client1 PolicyName: PolicyName