Struct aws_sdk_wisdom::types::builders::AssistantDataBuilder
source · #[non_exhaustive]pub struct AssistantDataBuilder { /* private fields */ }
Expand description
A builder for AssistantData
.
Implementations§
source§impl AssistantDataBuilder
impl AssistantDataBuilder
sourcepub fn assistant_id(self, input: impl Into<String>) -> Self
pub fn assistant_id(self, input: impl Into<String>) -> Self
The identifier of the Wisdom assistant.
sourcepub fn set_assistant_id(self, input: Option<String>) -> Self
pub fn set_assistant_id(self, input: Option<String>) -> Self
The identifier of the Wisdom assistant.
sourcepub fn get_assistant_id(&self) -> &Option<String>
pub fn get_assistant_id(&self) -> &Option<String>
The identifier of the Wisdom assistant.
sourcepub fn assistant_arn(self, input: impl Into<String>) -> Self
pub fn assistant_arn(self, input: impl Into<String>) -> Self
The Amazon Resource Name (ARN) of the Wisdom assistant.
sourcepub fn set_assistant_arn(self, input: Option<String>) -> Self
pub fn set_assistant_arn(self, input: Option<String>) -> Self
The Amazon Resource Name (ARN) of the Wisdom assistant.
sourcepub fn get_assistant_arn(&self) -> &Option<String>
pub fn get_assistant_arn(&self) -> &Option<String>
The Amazon Resource Name (ARN) of the Wisdom assistant.
sourcepub fn type(self, input: AssistantType) -> Self
pub fn type(self, input: AssistantType) -> Self
The type of assistant.
sourcepub fn set_type(self, input: Option<AssistantType>) -> Self
pub fn set_type(self, input: Option<AssistantType>) -> Self
The type of assistant.
sourcepub fn get_type(&self) -> &Option<AssistantType>
pub fn get_type(&self) -> &Option<AssistantType>
The type of assistant.
sourcepub fn status(self, input: AssistantStatus) -> Self
pub fn status(self, input: AssistantStatus) -> Self
The status of the assistant.
sourcepub fn set_status(self, input: Option<AssistantStatus>) -> Self
pub fn set_status(self, input: Option<AssistantStatus>) -> Self
The status of the assistant.
sourcepub fn get_status(&self) -> &Option<AssistantStatus>
pub fn get_status(&self) -> &Option<AssistantStatus>
The status of the assistant.
sourcepub fn description(self, input: impl Into<String>) -> Self
pub fn description(self, input: impl Into<String>) -> Self
The description.
sourcepub fn set_description(self, input: Option<String>) -> Self
pub fn set_description(self, input: Option<String>) -> Self
The description.
sourcepub fn get_description(&self) -> &Option<String>
pub fn get_description(&self) -> &Option<String>
The description.
Adds a key-value pair to tags
.
To override the contents of this collection use set_tags
.
The tags used to organize, track, or control access for this resource.
The tags used to organize, track, or control access for this resource.
The tags used to organize, track, or control access for this resource.
sourcepub fn server_side_encryption_configuration(
self,
input: ServerSideEncryptionConfiguration
) -> Self
pub fn server_side_encryption_configuration( self, input: ServerSideEncryptionConfiguration ) -> Self
The KMS key used for encryption.
sourcepub fn set_server_side_encryption_configuration(
self,
input: Option<ServerSideEncryptionConfiguration>
) -> Self
pub fn set_server_side_encryption_configuration( self, input: Option<ServerSideEncryptionConfiguration> ) -> Self
The KMS key used for encryption.
sourcepub fn get_server_side_encryption_configuration(
&self
) -> &Option<ServerSideEncryptionConfiguration>
pub fn get_server_side_encryption_configuration( &self ) -> &Option<ServerSideEncryptionConfiguration>
The KMS key used for encryption.
sourcepub fn integration_configuration(
self,
input: AssistantIntegrationConfiguration
) -> Self
pub fn integration_configuration( self, input: AssistantIntegrationConfiguration ) -> Self
The configuration information for the Wisdom assistant integration.
sourcepub fn set_integration_configuration(
self,
input: Option<AssistantIntegrationConfiguration>
) -> Self
pub fn set_integration_configuration( self, input: Option<AssistantIntegrationConfiguration> ) -> Self
The configuration information for the Wisdom assistant integration.
sourcepub fn get_integration_configuration(
&self
) -> &Option<AssistantIntegrationConfiguration>
pub fn get_integration_configuration( &self ) -> &Option<AssistantIntegrationConfiguration>
The configuration information for the Wisdom assistant integration.
sourcepub fn build(self) -> AssistantData
pub fn build(self) -> AssistantData
Consumes the builder and constructs a AssistantData
.
Trait Implementations§
source§impl Clone for AssistantDataBuilder
impl Clone for AssistantDataBuilder
source§fn clone(&self) -> AssistantDataBuilder
fn clone(&self) -> AssistantDataBuilder
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moresource§impl Debug for AssistantDataBuilder
impl Debug for AssistantDataBuilder
source§impl Default for AssistantDataBuilder
impl Default for AssistantDataBuilder
source§fn default() -> AssistantDataBuilder
fn default() -> AssistantDataBuilder
source§impl PartialEq<AssistantDataBuilder> for AssistantDataBuilder
impl PartialEq<AssistantDataBuilder> for AssistantDataBuilder
source§fn eq(&self, other: &AssistantDataBuilder) -> bool
fn eq(&self, other: &AssistantDataBuilder) -> bool
self
and other
values to be equal, and is used
by ==
.