Class: Aws::IAM::Types::DeleteServiceSpecificCredentialRequest
- Inherits:
-
Struct
- Object
- Struct
- Aws::IAM::Types::DeleteServiceSpecificCredentialRequest
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-iam/types.rb
Overview
When making an API call, you may pass DeleteServiceSpecificCredentialRequest data as a hash:
{
user_name: "userNameType",
service_specific_credential_id: "serviceSpecificCredentialId", # required
}
Instance Attribute Summary collapse
-
#service_specific_credential_id ⇒ String
The unique identifier of the service-specific credential.
-
#user_name ⇒ String
The name of the IAM user associated with the service-specific credential.
Instance Attribute Details
#service_specific_credential_id ⇒ String
The unique identifier of the service-specific credential. You can get this value by calling ListServiceSpecificCredentials.
This parameter allows (per its [regex pattern]) a string of characters that can consist of any upper or lowercased letter or digit.
2126 2127 2128 2129 2130 |
# File 'lib/aws-sdk-iam/types.rb', line 2126 class DeleteServiceSpecificCredentialRequest < Struct.new( :user_name, :service_specific_credential_id) include Aws::Structure end |
#user_name ⇒ String
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 (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: _+=,.@-
2126 2127 2128 2129 2130 |
# File 'lib/aws-sdk-iam/types.rb', line 2126 class DeleteServiceSpecificCredentialRequest < Struct.new( :user_name, :service_specific_credential_id) include Aws::Structure end |