Struct aws_sdk_wisdom::types::AssistantData
source · #[non_exhaustive]pub struct AssistantData {
pub assistant_id: Option<String>,
pub assistant_arn: Option<String>,
pub name: Option<String>,
pub type: Option<AssistantType>,
pub status: Option<AssistantStatus>,
pub description: Option<String>,
pub tags: Option<HashMap<String, String>>,
pub server_side_encryption_configuration: Option<ServerSideEncryptionConfiguration>,
pub integration_configuration: Option<AssistantIntegrationConfiguration>,
}
Expand description
The assistant data.
Fields (Non-exhaustive)§
This struct is marked as non-exhaustive
Struct { .. }
syntax; cannot be matched against without a wildcard ..
; and struct update syntax will not work.assistant_id: Option<String>
The identifier of the Wisdom assistant.
assistant_arn: Option<String>
The Amazon Resource Name (ARN) of the Wisdom assistant.
name: Option<String>
The name.
type: Option<AssistantType>
The type of assistant.
status: Option<AssistantStatus>
The status of the assistant.
description: Option<String>
The description.
The tags used to organize, track, or control access for this resource.
server_side_encryption_configuration: Option<ServerSideEncryptionConfiguration>
The KMS key used for encryption.
integration_configuration: Option<AssistantIntegrationConfiguration>
The configuration information for the Wisdom assistant integration.
Implementations§
source§impl AssistantData
impl AssistantData
sourcepub fn assistant_id(&self) -> Option<&str>
pub fn assistant_id(&self) -> Option<&str>
The identifier of the Wisdom assistant.
sourcepub fn assistant_arn(&self) -> Option<&str>
pub fn assistant_arn(&self) -> Option<&str>
The Amazon Resource Name (ARN) of the Wisdom assistant.
sourcepub fn type(&self) -> Option<&AssistantType>
pub fn type(&self) -> Option<&AssistantType>
The type of assistant.
sourcepub fn status(&self) -> Option<&AssistantStatus>
pub fn status(&self) -> Option<&AssistantStatus>
The status of the assistant.
sourcepub fn description(&self) -> Option<&str>
pub fn description(&self) -> Option<&str>
The description.
The tags used to organize, track, or control access for this resource.
sourcepub fn server_side_encryption_configuration(
&self
) -> Option<&ServerSideEncryptionConfiguration>
pub fn server_side_encryption_configuration( &self ) -> Option<&ServerSideEncryptionConfiguration>
The KMS key used for encryption.
sourcepub fn integration_configuration(
&self
) -> Option<&AssistantIntegrationConfiguration>
pub fn integration_configuration( &self ) -> Option<&AssistantIntegrationConfiguration>
The configuration information for the Wisdom assistant integration.
source§impl AssistantData
impl AssistantData
sourcepub fn builder() -> AssistantDataBuilder
pub fn builder() -> AssistantDataBuilder
Creates a new builder-style object to manufacture AssistantData
.
Trait Implementations§
source§impl Clone for AssistantData
impl Clone for AssistantData
source§fn clone(&self) -> AssistantData
fn clone(&self) -> AssistantData
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moresource§impl Debug for AssistantData
impl Debug for AssistantData
source§impl PartialEq<AssistantData> for AssistantData
impl PartialEq<AssistantData> for AssistantData
source§fn eq(&self, other: &AssistantData) -> bool
fn eq(&self, other: &AssistantData) -> bool
self
and other
values to be equal, and is used
by ==
.