AWS::RAM::Permission
Creates a customer managed permission for a specified resource type that you can attach to resource shares. It is created in the AWS Region in which you call the operation.
Syntax
To declare this entity in your AWS CloudFormation template, use the following syntax:
JSON
{ "Type" : "AWS::RAM::Permission", "Properties" : { "Name" :
String
, "PolicyTemplate" :Json
, "ResourceType" :String
, "Tags" :[ Tag, ... ]
} }
YAML
Type: AWS::RAM::Permission Properties: Name:
String
PolicyTemplate:Json
ResourceType:String
Tags:- Tag
Properties
Name
-
Specifies the name of the customer managed permission. The name must be unique within the AWS Region.
Required: Yes
Type: String
Pattern:
[\w.-]*
Minimum:
1
Maximum:
36
Update requires: Replacement
PolicyTemplate
-
A string in JSON format string that contains the following elements of a resource-based policy:
-
Effect: must be set to
ALLOW
. -
Action: specifies the actions that are allowed by this customer managed permission. The list must contain only actions that are supported by the specified resource type. For a list of all actions supported by each resource type, see Actions, resources, and condition keys for AWS services in the AWS Identity and Access Management User Guide.
-
Condition: (optional) specifies conditional parameters that must evaluate to true when a user attempts an action for that action to be allowed. For more information about the Condition element, see IAM policies: Condition element in the AWS Identity and Access Management User Guide.
This template can't include either the
Resource
orPrincipal
elements. Those are both filled in by AWS RAM when it instantiates the resource-based policy on each resource shared using this managed permission. TheResource
comes from the ARN of the specific resource that you are sharing. ThePrincipal
comes from the list of identities added to the resource share.Required: Yes
Type: Json
Update requires: Replacement
-
ResourceType
-
Specifies the name of the resource type that this customer managed permission applies to.
The format is
<service-code>:<resource-type>
and is not case sensitive. For example, to specify an Amazon EC2 Subnet, you can use the stringec2:subnet
. To see the list of valid values for this parameter, query the ListResourceTypes operation.Required: Yes
Type: String
Update requires: Replacement
-
Specifies a list of one or more tag key and value pairs to attach to the permission.
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 ARN of the permission.
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 new permission.
IsResourceTypeDefault
-
Specifies whether this permission is the default for new resource shares that include resources of the associated resource type.
PermissionType
-
The type of managed permission. This can be one of the following values:
-
AWS_MANAGED_PERMISSION – AWS created and manages this managed permission. You can associate it with your resource shares, but you can't modify it.
-
CUSTOMER_MANAGED_PERMISSION – You, or another principal in your account created this managed permission. You can associate it with your resource shares and create new versions that have different permissions.
-
Version
-
The version number for this version of the permission.
See also
-
CreatePermission in the AWS Resource Access Manager API Reference