Struct aws_sdk_appstream::operation::update_application::builders::UpdateApplicationFluentBuilder
source · pub struct UpdateApplicationFluentBuilder { /* private fields */ }
Expand description
Fluent builder constructing a request to UpdateApplication
.
Updates the specified application.
Implementations§
source§impl UpdateApplicationFluentBuilder
impl UpdateApplicationFluentBuilder
sourcepub async fn customize(
self
) -> Result<CustomizableOperation<UpdateApplication, AwsResponseRetryClassifier>, SdkError<UpdateApplicationError>>
pub async fn customize( self ) -> Result<CustomizableOperation<UpdateApplication, AwsResponseRetryClassifier>, SdkError<UpdateApplicationError>>
Consume this builder, creating a customizable operation that can be modified before being sent. The operation’s inner http::Request can be modified as well.
sourcepub async fn send(
self
) -> Result<UpdateApplicationOutput, SdkError<UpdateApplicationError>>
pub async fn send( self ) -> Result<UpdateApplicationOutput, SdkError<UpdateApplicationError>>
Sends the request and returns the response.
If an error occurs, an SdkError
will be returned with additional details that
can be matched against.
By default, any retryable failures will be retried twice. Retry behavior is configurable with the RetryConfig, which can be set when configuring the client.
sourcepub fn name(self, input: impl Into<String>) -> Self
pub fn name(self, input: impl Into<String>) -> Self
The name of the application. This name is visible to users when display name is not specified.
sourcepub fn set_name(self, input: Option<String>) -> Self
pub fn set_name(self, input: Option<String>) -> Self
The name of the application. This name is visible to users when display name is not specified.
sourcepub fn display_name(self, input: impl Into<String>) -> Self
pub fn display_name(self, input: impl Into<String>) -> Self
The display name of the application. This name is visible to users in the application catalog.
sourcepub fn set_display_name(self, input: Option<String>) -> Self
pub fn set_display_name(self, input: Option<String>) -> Self
The display name of the application. This name is visible to users in the application catalog.
sourcepub fn description(self, input: impl Into<String>) -> Self
pub fn description(self, input: impl Into<String>) -> Self
The description of the application.
sourcepub fn set_description(self, input: Option<String>) -> Self
pub fn set_description(self, input: Option<String>) -> Self
The description of the application.
sourcepub fn icon_s3_location(self, input: S3Location) -> Self
pub fn icon_s3_location(self, input: S3Location) -> Self
The icon S3 location of the application.
sourcepub fn set_icon_s3_location(self, input: Option<S3Location>) -> Self
pub fn set_icon_s3_location(self, input: Option<S3Location>) -> Self
The icon S3 location of the application.
sourcepub fn launch_path(self, input: impl Into<String>) -> Self
pub fn launch_path(self, input: impl Into<String>) -> Self
The launch path of the application.
sourcepub fn set_launch_path(self, input: Option<String>) -> Self
pub fn set_launch_path(self, input: Option<String>) -> Self
The launch path of the application.
sourcepub fn working_directory(self, input: impl Into<String>) -> Self
pub fn working_directory(self, input: impl Into<String>) -> Self
The working directory of the application.
sourcepub fn set_working_directory(self, input: Option<String>) -> Self
pub fn set_working_directory(self, input: Option<String>) -> Self
The working directory of the application.
sourcepub fn launch_parameters(self, input: impl Into<String>) -> Self
pub fn launch_parameters(self, input: impl Into<String>) -> Self
The launch parameters of the application.
sourcepub fn set_launch_parameters(self, input: Option<String>) -> Self
pub fn set_launch_parameters(self, input: Option<String>) -> Self
The launch parameters of the application.
sourcepub fn app_block_arn(self, input: impl Into<String>) -> Self
pub fn app_block_arn(self, input: impl Into<String>) -> Self
The ARN of the app block.
sourcepub fn set_app_block_arn(self, input: Option<String>) -> Self
pub fn set_app_block_arn(self, input: Option<String>) -> Self
The ARN of the app block.
sourcepub fn attributes_to_delete(self, input: ApplicationAttribute) -> Self
pub fn attributes_to_delete(self, input: ApplicationAttribute) -> Self
Appends an item to AttributesToDelete
.
To override the contents of this collection use set_attributes_to_delete
.
The attributes to delete for an application.
sourcepub fn set_attributes_to_delete(
self,
input: Option<Vec<ApplicationAttribute>>
) -> Self
pub fn set_attributes_to_delete( self, input: Option<Vec<ApplicationAttribute>> ) -> Self
The attributes to delete for an application.
Trait Implementations§
source§impl Clone for UpdateApplicationFluentBuilder
impl Clone for UpdateApplicationFluentBuilder
source§fn clone(&self) -> UpdateApplicationFluentBuilder
fn clone(&self) -> UpdateApplicationFluentBuilder
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read more