Struct rusoto_sts::GetSessionTokenResponse[][src]

pub struct GetSessionTokenResponse {
    pub credentials: Option<Credentials>,
}

Contains the response to a successful GetSessionToken request, including temporary AWS credentials that can be used to make AWS requests.

Fields

The temporary security credentials, which include an access key ID, a secret access key, and a security (or session) token.

Note: The size of the security token that STS APIs return is not fixed. We strongly recommend that you make no assumptions about the maximum size. As of this writing, the typical size is less than 4096 bytes, but that can vary. Also, future updates to AWS might require larger sizes.

Trait Implementations

impl Default for GetSessionTokenResponse
[src]

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

impl Debug for GetSessionTokenResponse
[src]

Formats the value using the given formatter. Read more

impl Clone for GetSessionTokenResponse
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

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