Struct rusoto_gamelift::CreateBuildOutput[][src]

pub struct CreateBuildOutput {
    pub build: Option<Build>,
    pub storage_location: Option<S3Location>,
    pub upload_credentials: Option<AwsCredentials>,
}

Represents the returned data in response to a request action.

Fields

The newly created build record, including a unique build ID and status.

Amazon S3 location for your game build file, including bucket name and key.

This element is returned only when the operation is called without a storage location. It contains credentials to use when you are uploading a build file to an Amazon S3 bucket that is owned by Amazon GameLift. Credentials have a limited life span. To refresh these credentials, call RequestUploadCredentials.

Trait Implementations

impl Default for CreateBuildOutput
[src]

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

impl Debug for CreateBuildOutput
[src]

Formats the value using the given formatter. Read more

impl Clone for CreateBuildOutput
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

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