Struct aws_sdk_appstream::types::ScriptDetails
source · #[non_exhaustive]pub struct ScriptDetails { /* private fields */ }
Expand description
Describes the details of the script.
Implementations§
source§impl ScriptDetails
impl ScriptDetails
sourcepub fn script_s3_location(&self) -> Option<&S3Location>
pub fn script_s3_location(&self) -> Option<&S3Location>
The S3 object location for the script.
sourcepub fn executable_path(&self) -> Option<&str>
pub fn executable_path(&self) -> Option<&str>
The run path for the script.
sourcepub fn executable_parameters(&self) -> Option<&str>
pub fn executable_parameters(&self) -> Option<&str>
The runtime parameters passed to the run path for the script.
sourcepub fn timeout_in_seconds(&self) -> Option<i32>
pub fn timeout_in_seconds(&self) -> Option<i32>
The run timeout, in seconds, for the script.
source§impl ScriptDetails
impl ScriptDetails
sourcepub fn builder() -> ScriptDetailsBuilder
pub fn builder() -> ScriptDetailsBuilder
Creates a new builder-style object to manufacture ScriptDetails
.
Trait Implementations§
source§impl Clone for ScriptDetails
impl Clone for ScriptDetails
source§fn clone(&self) -> ScriptDetails
fn clone(&self) -> ScriptDetails
Returns a copy of the value. Read more
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moresource§impl Debug for ScriptDetails
impl Debug for ScriptDetails
source§impl PartialEq<ScriptDetails> for ScriptDetails
impl PartialEq<ScriptDetails> for ScriptDetails
source§fn eq(&self, other: &ScriptDetails) -> bool
fn eq(&self, other: &ScriptDetails) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.