// Code generated by software.amazon.smithy.rust.codegen.smithy-rs. DO NOT EDIT.
impl super::Client {
/// Constructs a fluent builder for the [`DisassociateDataShareConsumer`](crate::operation::disassociate_data_share_consumer::builders::DisassociateDataShareConsumerFluentBuilder) operation.
///
/// - The fluent builder is configurable:
/// - [`data_share_arn(impl Into<String>)`](crate::operation::disassociate_data_share_consumer::builders::DisassociateDataShareConsumerFluentBuilder::data_share_arn) / [`set_data_share_arn(Option<String>)`](crate::operation::disassociate_data_share_consumer::builders::DisassociateDataShareConsumerFluentBuilder::set_data_share_arn):<br>required: **true**<br><p>The Amazon Resource Name (ARN) of the datashare to remove association for.</p><br>
/// - [`disassociate_entire_account(bool)`](crate::operation::disassociate_data_share_consumer::builders::DisassociateDataShareConsumerFluentBuilder::disassociate_entire_account) / [`set_disassociate_entire_account(Option<bool>)`](crate::operation::disassociate_data_share_consumer::builders::DisassociateDataShareConsumerFluentBuilder::set_disassociate_entire_account):<br>required: **false**<br><p>A value that specifies whether association for the datashare is removed from the entire account.</p><br>
/// - [`consumer_arn(impl Into<String>)`](crate::operation::disassociate_data_share_consumer::builders::DisassociateDataShareConsumerFluentBuilder::consumer_arn) / [`set_consumer_arn(Option<String>)`](crate::operation::disassociate_data_share_consumer::builders::DisassociateDataShareConsumerFluentBuilder::set_consumer_arn):<br>required: **false**<br><p>The Amazon Resource Name (ARN) of the consumer that association for the datashare is removed from.</p><br>
/// - [`consumer_region(impl Into<String>)`](crate::operation::disassociate_data_share_consumer::builders::DisassociateDataShareConsumerFluentBuilder::consumer_region) / [`set_consumer_region(Option<String>)`](crate::operation::disassociate_data_share_consumer::builders::DisassociateDataShareConsumerFluentBuilder::set_consumer_region):<br>required: **false**<br><p>From a datashare consumer account, removes association of a datashare from all the existing and future namespaces in the specified Amazon Web Services Region.</p><br>
/// - On success, responds with [`DisassociateDataShareConsumerOutput`](crate::operation::disassociate_data_share_consumer::DisassociateDataShareConsumerOutput) with field(s):
/// - [`data_share_arn(Option<String>)`](crate::operation::disassociate_data_share_consumer::DisassociateDataShareConsumerOutput::data_share_arn): <p>An Amazon Resource Name (ARN) that references the datashare that is owned by a specific namespace of the producer cluster. A datashare ARN is in the <code>arn:aws:redshift:{region}:{account-id}:{datashare}:{namespace-guid}/{datashare-name}</code> format.</p>
/// - [`producer_arn(Option<String>)`](crate::operation::disassociate_data_share_consumer::DisassociateDataShareConsumerOutput::producer_arn): <p>The Amazon Resource Name (ARN) of the producer.</p>
/// - [`allow_publicly_accessible_consumers(Option<bool>)`](crate::operation::disassociate_data_share_consumer::DisassociateDataShareConsumerOutput::allow_publicly_accessible_consumers): <p>A value that specifies whether the datashare can be shared to a publicly accessible cluster.</p>
/// - [`data_share_associations(Option<Vec::<DataShareAssociation>>)`](crate::operation::disassociate_data_share_consumer::DisassociateDataShareConsumerOutput::data_share_associations): <p>A value that specifies when the datashare has an association between producer and data consumers.</p>
/// - [`managed_by(Option<String>)`](crate::operation::disassociate_data_share_consumer::DisassociateDataShareConsumerOutput::managed_by): <p>The identifier of a datashare to show its managing entity.</p>
/// - On failure, responds with [`SdkError<DisassociateDataShareConsumerError>`](crate::operation::disassociate_data_share_consumer::DisassociateDataShareConsumerError)
pub fn disassociate_data_share_consumer(
&self,
) -> crate::operation::disassociate_data_share_consumer::builders::DisassociateDataShareConsumerFluentBuilder {
crate::operation::disassociate_data_share_consumer::builders::DisassociateDataShareConsumerFluentBuilder::new(self.handle.clone())
}
}