[−][src]Struct rusoto_gamelift::UpdateScriptInput
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]
fn eq(&self, other: &UpdateScriptInput) -> bool
[src]
fn ne(&self, other: &UpdateScriptInput) -> bool
[src]
impl Default for UpdateScriptInput
[src]
fn default() -> UpdateScriptInput
[src]
impl Clone for UpdateScriptInput
[src]
fn clone(&self) -> 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]
U: From<T>,
impl<T> ToOwned for T where
T: Clone,
[src]
T: Clone,
impl<T, U> TryFrom for T where
T: From<U>,
[src]
T: From<U>,
type Error = !
try_from
)The type returned in the event of a conversion error.
fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>
[src]
impl<T> Borrow for T where
T: ?Sized,
[src]
T: ?Sized,
impl<T> BorrowMut for T where
T: ?Sized,
[src]
T: ?Sized,
fn borrow_mut(&mut self) -> &mut T
[src]
impl<T, U> TryInto for T where
U: TryFrom<T>,
[src]
U: TryFrom<T>,
type Error = <U as TryFrom<T>>::Error
try_from
)The type returned in the event of a conversion error.
fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>
[src]
impl<T> Any for T where
T: 'static + ?Sized,
[src]
T: 'static + ?Sized,
fn get_type_id(&self) -> TypeId
[src]
impl<T> Erased for T
impl<T> Same for T
type Output = T
Should always be Self