Class: Aws::IAM::Types::UpdateServiceSpecificCredentialRequest
- Inherits:
- 
      Struct
      
        - Object
- Struct
- Aws::IAM::Types::UpdateServiceSpecificCredentialRequest
 
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-iam/types.rb
Overview
Constant Summary collapse
- SENSITIVE =
- [] 
Instance Attribute Summary collapse
- 
  
    
      #service_specific_credential_id  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    The unique identifier of the service-specific credential. 
- 
  
    
      #status  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    The status to be assigned to 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.
This parameter allows (through its [regex pattern]) a string of characters that can consist of any upper or lowercased letter or digit.
| 11514 11515 11516 11517 11518 11519 11520 | # File 'lib/aws-sdk-iam/types.rb', line 11514 class UpdateServiceSpecificCredentialRequest < Struct.new( :user_name, :service_specific_credential_id, :status) SENSITIVE = [] include Aws::Structure end | 
#status ⇒ String
The status to be assigned to the service-specific credential.
| 11514 11515 11516 11517 11518 11519 11520 | # File 'lib/aws-sdk-iam/types.rb', line 11514 class UpdateServiceSpecificCredentialRequest < Struct.new( :user_name, :service_specific_credential_id, :status) SENSITIVE = [] include Aws::Structure end | 
#user_name ⇒ String
The name of the IAM user associated with the service-specific credential. If you do not specify this value, 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: _+=,.@-
| 11514 11515 11516 11517 11518 11519 11520 | # File 'lib/aws-sdk-iam/types.rb', line 11514 class UpdateServiceSpecificCredentialRequest < Struct.new( :user_name, :service_specific_credential_id, :status) SENSITIVE = [] include Aws::Structure end |