Class: Aws::IAM::Types::CreateAccessKeyRequest
- Inherits:
-
Struct
- Object
- Struct
- Aws::IAM::Types::CreateAccessKeyRequest
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-iam/types.rb
Overview
Note:
When making an API call, you may pass CreateAccessKeyRequest data as a hash:
{
user_name: "existingUserNameType",
}
Instance Attribute Summary collapse
-
#user_name ⇒ String
The name of the IAM user that the new key will belong to.
Instance Attribute Details
#user_name ⇒ String
The name of the IAM user that the new key will belong 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: _+=,.@-
560 561 562 563 |
# File 'lib/aws-sdk-iam/types.rb', line 560 class CreateAccessKeyRequest < Struct.new( :user_name) include Aws::Structure end |