IAM / Client / reset_service_specific_credential

reset_service_specific_credential#

IAM.Client.reset_service_specific_credential(**kwargs)#

Resets the password for a service-specific credential. The new password is Amazon Web Services generated and cryptographically strong. It cannot be configured by the user. Resetting the password immediately invalidates the previous password associated with this user.

See also: AWS API Documentation

Request Syntax

response = client.reset_service_specific_credential(
    UserName='string',
    ServiceSpecificCredentialId='string'
)
Parameters:
  • UserName (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 (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: _+=,.@-

  • ServiceSpecificCredentialId (string) –

    [REQUIRED]

    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.

Return type:

dict

Returns:

Response Syntax

{
    'ServiceSpecificCredential': {
        'CreateDate': datetime(2015, 1, 1),
        'ServiceName': 'string',
        'ServiceUserName': 'string',
        'ServicePassword': 'string',
        'ServiceSpecificCredentialId': 'string',
        'UserName': 'string',
        'Status': 'Active'|'Inactive'
    }
}

Response Structure

  • (dict) –

    • ServiceSpecificCredential (dict) –

      A structure with details about the updated service-specific credential, including the new password.

      Warning

      This is the only time that you can access the password. You cannot recover the password later, but you can reset it again.

      • CreateDate (datetime) –

        The date and time, in ISO 8601 date-time format, when the service-specific credential were created.

      • ServiceName (string) –

        The name of the service associated with the service-specific credential.

      • ServiceUserName (string) –

        The generated user name for the service-specific credential. This value is generated by combining the IAM user’s name combined with the ID number of the Amazon Web Services account, as in jane-at-123456789012, for example. This value cannot be configured by the user.

      • ServicePassword (string) –

        The generated password for the service-specific credential.

      • ServiceSpecificCredentialId (string) –

        The unique identifier for the service-specific credential.

      • UserName (string) –

        The name of the IAM user associated with the service-specific credential.

      • Status (string) –

        The status of the service-specific credential. Active means that the key is valid for API calls, while Inactive means it is not.

Exceptions

  • IAM.Client.exceptions.NoSuchEntityException