aws_sdk_wisdom/client/
delete_assistant_association.rs

1
2
3
4
5
6
7
8
9
10
11
12
13
// Code generated by software.amazon.smithy.rust.codegen.smithy-rs. DO NOT EDIT.
impl super::Client {
    /// Constructs a fluent builder for the [`DeleteAssistantAssociation`](crate::operation::delete_assistant_association::builders::DeleteAssistantAssociationFluentBuilder) operation.
    ///
    /// - The fluent builder is configurable:
    ///   - [`assistant_association_id(impl Into<String>)`](crate::operation::delete_assistant_association::builders::DeleteAssistantAssociationFluentBuilder::assistant_association_id) / [`set_assistant_association_id(Option<String>)`](crate::operation::delete_assistant_association::builders::DeleteAssistantAssociationFluentBuilder::set_assistant_association_id):<br>required: **true**<br><p>The identifier of the assistant association. Can be either the ID or the ARN. URLs cannot contain the ARN.</p><br>
    ///   - [`assistant_id(impl Into<String>)`](crate::operation::delete_assistant_association::builders::DeleteAssistantAssociationFluentBuilder::assistant_id) / [`set_assistant_id(Option<String>)`](crate::operation::delete_assistant_association::builders::DeleteAssistantAssociationFluentBuilder::set_assistant_id):<br>required: **true**<br><p>The identifier of the Wisdom assistant. Can be either the ID or the ARN. URLs cannot contain the ARN.</p><br>
    /// - On success, responds with [`DeleteAssistantAssociationOutput`](crate::operation::delete_assistant_association::DeleteAssistantAssociationOutput)
    /// - On failure, responds with [`SdkError<DeleteAssistantAssociationError>`](crate::operation::delete_assistant_association::DeleteAssistantAssociationError)
    pub fn delete_assistant_association(&self) -> crate::operation::delete_assistant_association::builders::DeleteAssistantAssociationFluentBuilder {
        crate::operation::delete_assistant_association::builders::DeleteAssistantAssociationFluentBuilder::new(self.handle.clone())
    }
}