Struct rusoto_gamelift::RequestUploadCredentialsOutput[][src]

pub struct RequestUploadCredentialsOutput {
    pub storage_location: Option<S3Location>,
    pub upload_credentials: Option<AwsCredentials>,
}

Represents the returned data in response to a request action.

Fields

Amazon S3 path and key, identifying where the game build files are stored.

AWS credentials required when uploading a game build to the storage location. These credentials have a limited lifespan and are valid only for the build they were issued for.

Trait Implementations

impl Default for RequestUploadCredentialsOutput
[src]

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

impl Debug for RequestUploadCredentialsOutput
[src]

Formats the value using the given formatter. Read more

impl Clone for RequestUploadCredentialsOutput
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

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