#[non_exhaustive]pub struct UpdateApplicationInput { /* private fields */ }
Implementations§
source§impl UpdateApplicationInput
impl UpdateApplicationInput
sourcepub fn name(&self) -> Option<&str>
pub fn name(&self) -> Option<&str>
The name of the application. This name is visible to users when display name is not specified.
sourcepub fn display_name(&self) -> Option<&str>
pub fn display_name(&self) -> Option<&str>
The display name of the application. This name is visible to users in the application catalog.
sourcepub fn description(&self) -> Option<&str>
pub fn description(&self) -> Option<&str>
The description of the application.
sourcepub fn icon_s3_location(&self) -> Option<&S3Location>
pub fn icon_s3_location(&self) -> Option<&S3Location>
The icon S3 location of the application.
sourcepub fn launch_path(&self) -> Option<&str>
pub fn launch_path(&self) -> Option<&str>
The launch path of the application.
sourcepub fn working_directory(&self) -> Option<&str>
pub fn working_directory(&self) -> Option<&str>
The working directory of the application.
sourcepub fn launch_parameters(&self) -> Option<&str>
pub fn launch_parameters(&self) -> Option<&str>
The launch parameters of the application.
sourcepub fn app_block_arn(&self) -> Option<&str>
pub fn app_block_arn(&self) -> Option<&str>
The ARN of the app block.
sourcepub fn attributes_to_delete(&self) -> Option<&[ApplicationAttribute]>
pub fn attributes_to_delete(&self) -> Option<&[ApplicationAttribute]>
The attributes to delete for an application.
source§impl UpdateApplicationInput
impl UpdateApplicationInput
sourcepub fn builder() -> UpdateApplicationInputBuilder
pub fn builder() -> UpdateApplicationInputBuilder
Creates a new builder-style object to manufacture UpdateApplicationInput
.
source§impl UpdateApplicationInput
impl UpdateApplicationInput
sourcepub async fn make_operation(
&self,
_config: &Config
) -> Result<Operation<UpdateApplication, AwsResponseRetryClassifier>, BuildError>
pub async fn make_operation( &self, _config: &Config ) -> Result<Operation<UpdateApplication, AwsResponseRetryClassifier>, BuildError>
Consumes the builder and constructs an Operation<UpdateApplication
>
Trait Implementations§
source§impl Clone for UpdateApplicationInput
impl Clone for UpdateApplicationInput
source§fn clone(&self) -> UpdateApplicationInput
fn clone(&self) -> UpdateApplicationInput
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 UpdateApplicationInput
impl Debug for UpdateApplicationInput
source§impl PartialEq<UpdateApplicationInput> for UpdateApplicationInput
impl PartialEq<UpdateApplicationInput> for UpdateApplicationInput
source§fn eq(&self, other: &UpdateApplicationInput) -> bool
fn eq(&self, other: &UpdateApplicationInput) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.