Class: Aws::IAM::Types::UpdateRoleDescriptionRequest
- Inherits:
-
Struct
- Object
- Struct
- Aws::IAM::Types::UpdateRoleDescriptionRequest
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-iam/types.rb
Overview
Note:
When making an API call, you may pass UpdateRoleDescriptionRequest data as a hash:
{
role_name: "roleNameType", # required
description: "roleDescriptionType", # required
}
Instance Attribute Summary collapse
-
#description ⇒ String
The new description that you want to apply to the specified role.
-
#role_name ⇒ String
The name of the role that you want to modify.
Instance Attribute Details
#description ⇒ String
The new description that you want to apply to the specified role.
9062 9063 9064 9065 9066 |
# File 'lib/aws-sdk-iam/types.rb', line 9062 class UpdateRoleDescriptionRequest < Struct.new( :role_name, :description) include Aws::Structure end |
#role_name ⇒ String
The name of the role that you want to modify.
9062 9063 9064 9065 9066 |
# File 'lib/aws-sdk-iam/types.rb', line 9062 class UpdateRoleDescriptionRequest < Struct.new( :role_name, :description) include Aws::Structure end |