Class: Aws::IAM::Types::AttachRolePolicyRequest
- Inherits:
-
Struct
- Object
- Struct
- Aws::IAM::Types::AttachRolePolicyRequest
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-iam/types.rb
Overview
When making an API call, you may pass AttachRolePolicyRequest data as a hash:
{
role_name: "roleNameType", # required
policy_arn: "arnType", # required
}
Instance Attribute Summary collapse
-
#policy_arn ⇒ String
The Amazon Resource Name (ARN) of the IAM policy you want to attach.
-
#role_name ⇒ String
The name (friendly name, not ARN) of the role to attach the policy to.
Instance Attribute Details
#policy_arn ⇒ String
The Amazon Resource Name (ARN) of the IAM policy you want to attach.
For more information about ARNs, see [Amazon Resource Names (ARNs) and AWS Service Namespaces] in the *AWS General Reference*.
[1]: docs.aws.amazon.com/general/latest/gr/aws-arns-and-namespaces.html
339 340 341 342 343 |
# File 'lib/aws-sdk-iam/types.rb', line 339 class AttachRolePolicyRequest < Struct.new( :role_name, :policy_arn) include Aws::Structure end |
#role_name ⇒ String
The name (friendly name, not ARN) of the role to attach the policy to.
This parameter allows (through its [regex pattern]) a string of characters consisting of upper and lowercase alphanumeric characters with no spaces. You can also include any of the following characters: _+=,.@-
339 340 341 342 343 |
# File 'lib/aws-sdk-iam/types.rb', line 339 class AttachRolePolicyRequest < Struct.new( :role_name, :policy_arn) include Aws::Structure end |