Struct aws_sdk_qconnect::operation::create_assistant_association::CreateAssistantAssociationInput
source · #[non_exhaustive]pub struct CreateAssistantAssociationInput {
pub assistant_id: Option<String>,
pub association_type: Option<AssociationType>,
pub association: Option<AssistantAssociationInputData>,
pub client_token: Option<String>,
pub tags: Option<HashMap<String, String>>,
}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 Amazon Q assistant. Can be either the ID or the ARN. URLs cannot contain the ARN.
association_type: Option<AssociationType>The type of association.
association: Option<AssistantAssociationInputData>The identifier of the associated resource.
client_token: Option<String>A unique, case-sensitive identifier that you provide to ensure the idempotency of the request. If not provided, the Amazon Web Services SDK populates this field. For more information about idempotency, see Making retries safe with idempotent APIs.
The tags used to organize, track, or control access for this resource.
Implementations§
source§impl CreateAssistantAssociationInput
impl CreateAssistantAssociationInput
sourcepub fn assistant_id(&self) -> Option<&str>
pub fn assistant_id(&self) -> Option<&str>
The identifier of the Amazon Q assistant. Can be either the ID or the ARN. URLs cannot contain the ARN.
sourcepub fn association_type(&self) -> Option<&AssociationType>
pub fn association_type(&self) -> Option<&AssociationType>
The type of association.
sourcepub fn association(&self) -> Option<&AssistantAssociationInputData>
pub fn association(&self) -> Option<&AssistantAssociationInputData>
The identifier of the associated resource.
sourcepub fn client_token(&self) -> Option<&str>
pub fn client_token(&self) -> Option<&str>
A unique, case-sensitive identifier that you provide to ensure the idempotency of the request. If not provided, the Amazon Web Services SDK populates this field. For more information about idempotency, see Making retries safe with idempotent APIs.
The tags used to organize, track, or control access for this resource.
source§impl CreateAssistantAssociationInput
impl CreateAssistantAssociationInput
sourcepub fn builder() -> CreateAssistantAssociationInputBuilder
pub fn builder() -> CreateAssistantAssociationInputBuilder
Creates a new builder-style object to manufacture CreateAssistantAssociationInput.
Trait Implementations§
source§impl Clone for CreateAssistantAssociationInput
impl Clone for CreateAssistantAssociationInput
source§fn clone(&self) -> CreateAssistantAssociationInput
fn clone(&self) -> CreateAssistantAssociationInput
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source. Read moresource§impl PartialEq for CreateAssistantAssociationInput
impl PartialEq for CreateAssistantAssociationInput
source§fn eq(&self, other: &CreateAssistantAssociationInput) -> bool
fn eq(&self, other: &CreateAssistantAssociationInput) -> bool
self and other values to be equal, and is used
by ==.