Class: Aws::IAM::Types::GetRolePolicyResponse
- Inherits:
-
Struct
- Object
- Struct
- Aws::IAM::Types::GetRolePolicyResponse
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-iam/types.rb
Overview
Contains the response to a successful GetRolePolicy request.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#policy_document ⇒ String
The policy document.
-
#policy_name ⇒ String
The name of the policy.
-
#role_name ⇒ String
The role the policy is associated with.
Instance Attribute Details
#policy_document ⇒ String
The policy document.
IAM stores policies in JSON format. However, resources that were created using CloudFormation templates can be formatted in YAML. CloudFormation always converts a YAML policy to JSON format before submitting it to IAM.
3789 3790 3791 3792 3793 3794 3795 |
# File 'lib/aws-sdk-iam/types.rb', line 3789 class GetRolePolicyResponse < Struct.new( :role_name, :policy_name, :policy_document) SENSITIVE = [] include Aws::Structure end |
#policy_name ⇒ String
The name of the policy.
3789 3790 3791 3792 3793 3794 3795 |
# File 'lib/aws-sdk-iam/types.rb', line 3789 class GetRolePolicyResponse < Struct.new( :role_name, :policy_name, :policy_document) SENSITIVE = [] include Aws::Structure end |
#role_name ⇒ String
The role the policy is associated with.
3789 3790 3791 3792 3793 3794 3795 |
# File 'lib/aws-sdk-iam/types.rb', line 3789 class GetRolePolicyResponse < Struct.new( :role_name, :policy_name, :policy_document) SENSITIVE = [] include Aws::Structure end |