[][src]Struct rusoto_gamelift::UpdateScriptInput

pub struct UpdateScriptInput {
    pub name: Option<String>,
    pub script_id: String,
    pub storage_location: Option<S3Location>,
    pub version: Option<String>,
    pub zip_file: Option<Bytes>,
}

Fields

name: Option<String>

Descriptive label that is associated with a script. Script names do not need to be unique.

script_id: String

Unique identifier for a Realtime script to update.

storage_location: Option<S3Location>

Location of the Amazon S3 bucket where a zipped file containing your Realtime scripts is stored. The storage location must specify the Amazon S3 bucket name, the zip file name (the "key"), and a role ARN that allows Amazon GameLift to access the Amazon S3 storage location. The S3 bucket must be in the same region where you want to create a new script. By default, Amazon GameLift uploads the latest version of the zip file; if you have S3 object versioning turned on, you can use the ObjectVersion parameter to specify an earlier version.

version: Option<String>

Version that is associated with a build or script. Version strings do not need to be unique.

zip_file: Option<Bytes>

Data object containing your Realtime scripts and dependencies as a zip file. The zip file can have one or multiple files. Maximum size of a zip file is 5 MB.

When using the AWS CLI tool to create a script, this parameter is set to the zip file name. It must be prepended with the string "fileb://" to indicate that the file data is a binary object. For example: --zip-file fileb://myRealtimeScript.zip.

Trait Implementations

impl PartialEq<UpdateScriptInput> for UpdateScriptInput[src]

impl Default for UpdateScriptInput[src]

impl Clone for UpdateScriptInput[src]

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

Performs copy-assignment from source. Read more

impl Debug for UpdateScriptInput[src]

impl Serialize for UpdateScriptInput[src]

Auto Trait Implementations

impl Send for UpdateScriptInput

impl Sync for UpdateScriptInput

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> Erased for T

impl<T> Same for T

type Output = T

Should always be Self