aws_sdk_connect/client/disassociate_analytics_data_set.rs
// Code generated by software.amazon.smithy.rust.codegen.smithy-rs. DO NOT EDIT.
impl super::Client {
/// Constructs a fluent builder for the [`DisassociateAnalyticsDataSet`](crate::operation::disassociate_analytics_data_set::builders::DisassociateAnalyticsDataSetFluentBuilder) operation.
///
/// - The fluent builder is configurable:
/// - [`instance_id(impl Into<String>)`](crate::operation::disassociate_analytics_data_set::builders::DisassociateAnalyticsDataSetFluentBuilder::instance_id) / [`set_instance_id(Option<String>)`](crate::operation::disassociate_analytics_data_set::builders::DisassociateAnalyticsDataSetFluentBuilder::set_instance_id):<br>required: **true**<br><p>The identifier of the Amazon Connect instance. You can <a href="https://docs.aws.amazon.com/connect/latest/adminguide/find-instance-arn.html">find the instance ID</a> in the Amazon Resource Name (ARN) of the instance.</p><br>
/// - [`data_set_id(impl Into<String>)`](crate::operation::disassociate_analytics_data_set::builders::DisassociateAnalyticsDataSetFluentBuilder::data_set_id) / [`set_data_set_id(Option<String>)`](crate::operation::disassociate_analytics_data_set::builders::DisassociateAnalyticsDataSetFluentBuilder::set_data_set_id):<br>required: **true**<br><p>The identifier of the dataset to remove.</p><br>
/// - [`target_account_id(impl Into<String>)`](crate::operation::disassociate_analytics_data_set::builders::DisassociateAnalyticsDataSetFluentBuilder::target_account_id) / [`set_target_account_id(Option<String>)`](crate::operation::disassociate_analytics_data_set::builders::DisassociateAnalyticsDataSetFluentBuilder::set_target_account_id):<br>required: **false**<br><p>The identifier of the target account. Use to associate a dataset to a different account than the one containing the Amazon Connect instance. If not specified, by default this value is the Amazon Web Services account that has the Amazon Connect instance.</p><br>
/// - On success, responds with [`DisassociateAnalyticsDataSetOutput`](crate::operation::disassociate_analytics_data_set::DisassociateAnalyticsDataSetOutput)
/// - On failure, responds with [`SdkError<DisassociateAnalyticsDataSetError>`](crate::operation::disassociate_analytics_data_set::DisassociateAnalyticsDataSetError)
pub fn disassociate_analytics_data_set(
&self,
) -> crate::operation::disassociate_analytics_data_set::builders::DisassociateAnalyticsDataSetFluentBuilder {
crate::operation::disassociate_analytics_data_set::builders::DisassociateAnalyticsDataSetFluentBuilder::new(self.handle.clone())
}
}