[][src]Struct rusoto_gamelift::CreateBuildOutput

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

build: Option<Build>

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

storage_location: Option<S3Location>

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

upload_credentials: Option<AwsCredentials>

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

impl Default for CreateBuildOutput[src]

impl Clone for CreateBuildOutput[src]

fn clone_from(&mut self, source: &Self)
1.0.0
[src]

Performs copy-assignment from source. Read more

impl Debug for CreateBuildOutput[src]

impl<'de> Deserialize<'de> for CreateBuildOutput[src]

Auto Trait Implementations

impl Send for CreateBuildOutput

impl Sync for CreateBuildOutput

Blanket Implementations

impl<T> From for T[src]

impl<T, U> Into for T where
    U: From<T>, 
[src]

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

impl<T, U> TryFrom for T where
    T: From<U>, 
[src]

type Error = !

🔬 This is a nightly-only experimental API. (try_from)

The type returned in the event of a conversion error.

impl<T> Borrow for T where
    T: ?Sized
[src]

impl<T> BorrowMut for T where
    T: ?Sized
[src]

impl<T, U> TryInto for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

🔬 This is a nightly-only experimental API. (try_from)

The type returned in the event of a conversion error.

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> DeserializeOwned for T where
    T: Deserialize<'de>, 
[src]

impl<T> Erased for T

impl<T> Same for T

type Output = T

Should always be Self