Struct rusoto_gamelift::AwsCredentials[][src]

pub struct AwsCredentials {
    pub access_key_id: Option<String>,
    pub secret_access_key: Option<String>,
    pub session_token: Option<String>,
}

Temporary access credentials used for uploading game build files to Amazon GameLift. They are valid for a limited time. If they expire before you upload your game build, get a new set by calling RequestUploadCredentials.

Fields

Temporary key allowing access to the Amazon GameLift S3 account.

Temporary secret key allowing access to the Amazon GameLift S3 account.

Token used to associate a specific build ID with the files uploaded using these credentials.

Trait Implementations

impl Default for AwsCredentials
[src]

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

impl Debug for AwsCredentials
[src]

Formats the value using the given formatter. Read more

impl Clone for AwsCredentials
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

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