Struct aws_sdk_qbusiness::operation::update_application::builders::UpdateApplicationInputBuilder
source · #[non_exhaustive]pub struct UpdateApplicationInputBuilder { /* private fields */ }Expand description
A builder for UpdateApplicationInput.
Implementations§
source§impl UpdateApplicationInputBuilder
impl UpdateApplicationInputBuilder
sourcepub fn application_id(self, input: impl Into<String>) -> Self
pub fn application_id(self, input: impl Into<String>) -> Self
The identifier of the Amazon Q application.
This field is required.sourcepub fn set_application_id(self, input: Option<String>) -> Self
pub fn set_application_id(self, input: Option<String>) -> Self
The identifier of the Amazon Q application.
sourcepub fn get_application_id(&self) -> &Option<String>
pub fn get_application_id(&self) -> &Option<String>
The identifier of the Amazon Q application.
sourcepub fn display_name(self, input: impl Into<String>) -> Self
pub fn display_name(self, input: impl Into<String>) -> Self
A name for the Amazon Q application.
sourcepub fn set_display_name(self, input: Option<String>) -> Self
pub fn set_display_name(self, input: Option<String>) -> Self
A name for the Amazon Q application.
sourcepub fn get_display_name(&self) -> &Option<String>
pub fn get_display_name(&self) -> &Option<String>
A name for the Amazon Q application.
sourcepub fn description(self, input: impl Into<String>) -> Self
pub fn description(self, input: impl Into<String>) -> Self
A description for the Amazon Q application.
sourcepub fn set_description(self, input: Option<String>) -> Self
pub fn set_description(self, input: Option<String>) -> Self
A description for the Amazon Q application.
sourcepub fn get_description(&self) -> &Option<String>
pub fn get_description(&self) -> &Option<String>
A description for the Amazon Q application.
sourcepub fn role_arn(self, input: impl Into<String>) -> Self
pub fn role_arn(self, input: impl Into<String>) -> Self
An Amazon Web Services Identity and Access Management (IAM) role that gives Amazon Q permission to access Amazon CloudWatch logs and metrics.
sourcepub fn set_role_arn(self, input: Option<String>) -> Self
pub fn set_role_arn(self, input: Option<String>) -> Self
An Amazon Web Services Identity and Access Management (IAM) role that gives Amazon Q permission to access Amazon CloudWatch logs and metrics.
sourcepub fn get_role_arn(&self) -> &Option<String>
pub fn get_role_arn(&self) -> &Option<String>
An Amazon Web Services Identity and Access Management (IAM) role that gives Amazon Q permission to access Amazon CloudWatch logs and metrics.
sourcepub fn attachments_configuration(self, input: AttachmentsConfiguration) -> Self
pub fn attachments_configuration(self, input: AttachmentsConfiguration) -> Self
An option to allow end users to upload files directly during chat.
sourcepub fn set_attachments_configuration(
self,
input: Option<AttachmentsConfiguration>
) -> Self
pub fn set_attachments_configuration( self, input: Option<AttachmentsConfiguration> ) -> Self
An option to allow end users to upload files directly during chat.
sourcepub fn get_attachments_configuration(&self) -> &Option<AttachmentsConfiguration>
pub fn get_attachments_configuration(&self) -> &Option<AttachmentsConfiguration>
An option to allow end users to upload files directly during chat.
sourcepub fn build(self) -> Result<UpdateApplicationInput, BuildError>
pub fn build(self) -> Result<UpdateApplicationInput, BuildError>
Consumes the builder and constructs a UpdateApplicationInput.
source§impl UpdateApplicationInputBuilder
impl UpdateApplicationInputBuilder
sourcepub async fn send_with(
self,
client: &Client
) -> Result<UpdateApplicationOutput, SdkError<UpdateApplicationError, HttpResponse>>
pub async fn send_with( self, client: &Client ) -> Result<UpdateApplicationOutput, SdkError<UpdateApplicationError, HttpResponse>>
Sends a request with this input using the given client.
Trait Implementations§
source§impl Clone for UpdateApplicationInputBuilder
impl Clone for UpdateApplicationInputBuilder
source§fn clone(&self) -> UpdateApplicationInputBuilder
fn clone(&self) -> UpdateApplicationInputBuilder
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source. Read moresource§impl Default for UpdateApplicationInputBuilder
impl Default for UpdateApplicationInputBuilder
source§fn default() -> UpdateApplicationInputBuilder
fn default() -> UpdateApplicationInputBuilder
source§impl PartialEq for UpdateApplicationInputBuilder
impl PartialEq for UpdateApplicationInputBuilder
source§fn eq(&self, other: &UpdateApplicationInputBuilder) -> bool
fn eq(&self, other: &UpdateApplicationInputBuilder) -> bool
self and other values to be equal, and is used
by ==.