Struct rusoto_iam::ServiceSpecificCredential[][src]

pub struct ServiceSpecificCredential {
    pub create_date: String,
    pub service_name: String,
    pub service_password: String,
    pub service_specific_credential_id: String,
    pub service_user_name: String,
    pub status: String,
    pub user_name: String,
}

Contains the details of a service-specific credential.

Fields

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

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

The generated password for the service-specific credential.

The unique identifier for the service-specific credential.

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 AWS account, as in jane-at-123456789012, for example. This value cannot be configured by the user.

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

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

Trait Implementations

impl Default for ServiceSpecificCredential
[src]

Returns the "default value" for a type. Read more

impl Debug for ServiceSpecificCredential
[src]

Formats the value using the given formatter. Read more

impl Clone for ServiceSpecificCredential
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl PartialEq for ServiceSpecificCredential
[src]

This method tests for self and other values to be equal, and is used by ==. Read more

This method tests for !=.

Auto Trait Implementations