[][src]Struct rusoto_gamelift::CreateBuildInput

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

Represents the input for a request action.

Fields

name: Option<String>

A 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>

The 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 S3 bucket that you own. The storage location must specify an S3 bucket name and key. The location must also specify a role ARN that you set up to allow Amazon GameLift to access your S3 bucket. The S3 bucket and your new build must be in the same Region.

tags: Option<Vec<Tag>>

A list of labels to assign to the new build resource. Tags are developer-defined key-value pairs. Tagging AWS resources are useful for resource management, access management and cost allocation. For more information, see Tagging AWS Resources in the AWS General Reference. Once the resource is created, you can use TagResource, UntagResource, and ListTagsForResource to add, remove, and view tags. The maximum tag limit may be lower than stated. See the AWS General Reference for actual tagging limits.

version: Option<String>

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

Trait Implementations

impl Clone for CreateBuildInput[src]

impl Debug for CreateBuildInput[src]

impl Default for CreateBuildInput[src]

impl PartialEq<CreateBuildInput> for CreateBuildInput[src]

impl Serialize for CreateBuildInput[src]

impl StructuralPartialEq for CreateBuildInput[src]

Auto Trait Implementations

Blanket Implementations

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

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

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

impl<T> From<T> for T[src]

impl<T> Instrument for T[src]

impl<T> Instrument for T[src]

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

impl<T> Same<T> for T

type Output = T

Should always be Self

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

type Owned = T

The resulting type after obtaining ownership.

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

type Error = Infallible

The type returned in the event of a conversion error.

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

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

The type returned in the event of a conversion error.