Struct rusoto_iam::UpdateServiceSpecificCredentialRequest[][src]

pub struct UpdateServiceSpecificCredentialRequest {
    pub service_specific_credential_id: String,
    pub status: String,
    pub user_name: Option<String>,
}

Fields

The unique identifier of the service-specific credential.

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

The status to be assigned to the service-specific credential.

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 (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: _+=,.@-

Trait Implementations

impl Default for UpdateServiceSpecificCredentialRequest
[src]

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

impl Debug for UpdateServiceSpecificCredentialRequest
[src]

Formats the value using the given formatter. Read more

impl Clone for UpdateServiceSpecificCredentialRequest
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl PartialEq for UpdateServiceSpecificCredentialRequest
[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