Class: Aws::IAM::Types::CreateServiceSpecificCredentialRequest

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

Overview

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#service_nameString

The name of the Amazon Web Services 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.

Returns:

  • (String)


1489
1490
1491
1492
1493
1494
# File 'lib/aws-sdk-iam/types.rb', line 1489

class CreateServiceSpecificCredentialRequest < Struct.new(
  :user_name,
  :service_name)
  SENSITIVE = []
  include Aws::Structure
end

#user_nameString

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

[1]: wikipedia.org/wiki/regex

Returns:

  • (String)


1489
1490
1491
1492
1493
1494
# File 'lib/aws-sdk-iam/types.rb', line 1489

class CreateServiceSpecificCredentialRequest < Struct.new(
  :user_name,
  :service_name)
  SENSITIVE = []
  include Aws::Structure
end