Class: Aws::IAM::Types::CreateServiceSpecificCredentialRequest
- Inherits:
-
Struct
- Object
- Struct
- Aws::IAM::Types::CreateServiceSpecificCredentialRequest
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-iam/types.rb
Overview
When making an API call, you may pass CreateServiceSpecificCredentialRequest data as a hash:
{
user_name: "userNameType", # required
service_name: "serviceName", # required
}
Instance Attribute Summary collapse
-
#service_name ⇒ String
The name of the AWS service that is to be associated with the credentials.
-
#user_name ⇒ String
The name of the IAM user that is to be associated with the credentials.
Instance Attribute Details
#service_name ⇒ String
The name of the AWS service that is to be associated with the credentials. The service you specify here is the only service that can be accessed using these credentials.
1375 1376 1377 1378 1379 |
# File 'lib/aws-sdk-iam/types.rb', line 1375 class CreateServiceSpecificCredentialRequest < Struct.new( :user_name, :service_name) include Aws::Structure end |
#user_name ⇒ String
The name of the IAM user that is to be associated with the credentials. The new service-specific credentials have the same permissions as the associated user except that they can be used only to access the specified service.
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: _+=,.@-
1375 1376 1377 1378 1379 |
# File 'lib/aws-sdk-iam/types.rb', line 1375 class CreateServiceSpecificCredentialRequest < Struct.new( :user_name, :service_name) include Aws::Structure end |