Class: Aws::IAM::Types::GetRolePolicyRequest

Inherits:
Struct
  • Object
show all
Includes:
Structure
Defined in:
lib/aws-sdk-iam/types.rb

Overview

Note:

When making an API call, you may pass GetRolePolicyRequest data as a hash:

{
  role_name: "roleNameType", # required
  policy_name: "policyNameType", # required
}

Instance Attribute Summary collapse

Instance Attribute Details

#policy_nameString

The name of the policy document to get.

This parameter allows (per 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: _+=,.@-

[1]: wikipedia.org/wiki/regex

Returns:

  • (String)


3282
3283
3284
3285
3286
# File 'lib/aws-sdk-iam/types.rb', line 3282

class GetRolePolicyRequest < Struct.new(
  :role_name,
  :policy_name)
  include Aws::Structure
end

#role_nameString

The name of the role associated with the policy.

This parameter allows (per 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: _+=,.@-

[1]: wikipedia.org/wiki/regex

Returns:

  • (String)


3282
3283
3284
3285
3286
# File 'lib/aws-sdk-iam/types.rb', line 3282

class GetRolePolicyRequest < Struct.new(
  :role_name,
  :policy_name)
  include Aws::Structure
end