[][src]Struct rusoto_gamelift::CreateBuildInput

pub struct CreateBuildInput {
    pub name: Option<String>,
    pub operating_system: Option<String>,
    pub storage_location: Option<S3Location>,
    pub version: Option<String>,
}

Represents the input for a request action.

Fields

name: Option<String>

Descriptive label that is associated with a build. Build names do not need to be unique. You can use UpdateBuild to change this value later.

operating_system: Option<String>

Operating system that the game server binaries are built to run on. This value determines the type of fleet resources that you can use for this build. If your game build contains multiple executables, they all must run on the same operating system. If an operating system is not specified when creating a build, Amazon GameLift uses the default value (WINDOWS_2012). This value cannot be changed later.

storage_location: Option<S3Location>

Information indicating where your game build files are stored. Use this parameter only when creating a build with files stored in an Amazon S3 bucket that you own. The storage location must specify an Amazon S3 bucket name and key, as well as a role ARN that you set up to allow Amazon GameLift to access your Amazon S3 bucket. The S3 bucket must be in the same region that you want to create a new build in.

version: Option<String>

Version that is associated with this build. Version strings do not need to be unique. You can use UpdateBuild to change this value later.

Trait Implementations

impl PartialEq<CreateBuildInput> for CreateBuildInput[src]

impl Default for CreateBuildInput[src]

impl Clone for CreateBuildInput[src]

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

Performs copy-assignment from source. Read more

impl Debug for CreateBuildInput[src]

impl Serialize for CreateBuildInput[src]

Auto Trait Implementations

Blanket Implementations

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> From for T[src]

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

type Error = Infallible

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

The type returned in the event of a conversion error.

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

impl<T> Erased for T

impl<T> Same for T

type Output = T

Should always be Self