Class: Aws::IAM::Types::DeleteServiceSpecificCredentialRequest

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 DeleteServiceSpecificCredentialRequest data as a hash:

{
  user_name: "userNameType",
  service_specific_credential_id: "serviceSpecificCredentialId", # required
}

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#service_specific_credential_idString

The unique identifier of the service-specific credential. You can get this value by calling ListServiceSpecificCredentials.

This parameter allows (through its [regex pattern]) a string of characters that can consist of any upper or lowercased letter or digit.

[1]: wikipedia.org/wiki/regex

Returns:

  • (String)


2351
2352
2353
2354
2355
2356
# File 'lib/aws-sdk-iam/types.rb', line 2351

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

#user_nameString

The name of the IAM user associated with the service-specific credential. If this value is not specified, then the operation assumes the user whose credentials are used to call the operation.

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)


2351
2352
2353
2354
2355
2356
# File 'lib/aws-sdk-iam/types.rb', line 2351

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