aws_sdk_redshift/client/associate_data_share_consumer.rs
1// Code generated by software.amazon.smithy.rust.codegen.smithy-rs. DO NOT EDIT.
2impl super::Client {
3 /// Constructs a fluent builder for the [`AssociateDataShareConsumer`](crate::operation::associate_data_share_consumer::builders::AssociateDataShareConsumerFluentBuilder) operation.
4 ///
5 /// - The fluent builder is configurable:
6 /// - [`data_share_arn(impl Into<String>)`](crate::operation::associate_data_share_consumer::builders::AssociateDataShareConsumerFluentBuilder::data_share_arn) / [`set_data_share_arn(Option<String>)`](crate::operation::associate_data_share_consumer::builders::AssociateDataShareConsumerFluentBuilder::set_data_share_arn):<br>required: **true**<br><p>The Amazon Resource Name (ARN) of the datashare that the consumer is to use.</p><br>
7 /// - [`associate_entire_account(bool)`](crate::operation::associate_data_share_consumer::builders::AssociateDataShareConsumerFluentBuilder::associate_entire_account) / [`set_associate_entire_account(Option<bool>)`](crate::operation::associate_data_share_consumer::builders::AssociateDataShareConsumerFluentBuilder::set_associate_entire_account):<br>required: **false**<br><p>A value that specifies whether the datashare is associated with the entire account.</p><br>
8 /// - [`consumer_arn(impl Into<String>)`](crate::operation::associate_data_share_consumer::builders::AssociateDataShareConsumerFluentBuilder::consumer_arn) / [`set_consumer_arn(Option<String>)`](crate::operation::associate_data_share_consumer::builders::AssociateDataShareConsumerFluentBuilder::set_consumer_arn):<br>required: **false**<br><p>The Amazon Resource Name (ARN) of the consumer namespace associated with the datashare.</p><br>
9 /// - [`consumer_region(impl Into<String>)`](crate::operation::associate_data_share_consumer::builders::AssociateDataShareConsumerFluentBuilder::consumer_region) / [`set_consumer_region(Option<String>)`](crate::operation::associate_data_share_consumer::builders::AssociateDataShareConsumerFluentBuilder::set_consumer_region):<br>required: **false**<br><p>From a datashare consumer account, associates a datashare with all existing and future namespaces in the specified Amazon Web Services Region.</p><br>
10 /// - [`allow_writes(bool)`](crate::operation::associate_data_share_consumer::builders::AssociateDataShareConsumerFluentBuilder::allow_writes) / [`set_allow_writes(Option<bool>)`](crate::operation::associate_data_share_consumer::builders::AssociateDataShareConsumerFluentBuilder::set_allow_writes):<br>required: **false**<br><p>If set to true, allows write operations for a datashare.</p><br>
11 /// - On success, responds with [`AssociateDataShareConsumerOutput`](crate::operation::associate_data_share_consumer::AssociateDataShareConsumerOutput) with field(s):
12 /// - [`data_share_arn(Option<String>)`](crate::operation::associate_data_share_consumer::AssociateDataShareConsumerOutput::data_share_arn): <p>The Amazon Resource Name (ARN) of the datashare that the consumer is to use.</p>
13 /// - [`producer_arn(Option<String>)`](crate::operation::associate_data_share_consumer::AssociateDataShareConsumerOutput::producer_arn): <p>The Amazon Resource Name (ARN) of the producer namespace.</p>
14 /// - [`allow_publicly_accessible_consumers(Option<bool>)`](crate::operation::associate_data_share_consumer::AssociateDataShareConsumerOutput::allow_publicly_accessible_consumers): <p>A value that specifies whether the datashare can be shared to a publicly accessible cluster.</p>
15 /// - [`data_share_associations(Option<Vec::<DataShareAssociation>>)`](crate::operation::associate_data_share_consumer::AssociateDataShareConsumerOutput::data_share_associations): <p>A value that specifies when the datashare has an association between producer and data consumers.</p>
16 /// - [`managed_by(Option<String>)`](crate::operation::associate_data_share_consumer::AssociateDataShareConsumerOutput::managed_by): <p>The identifier of a datashare to show its managing entity.</p>
17 /// - [`data_share_type(Option<DataShareType>)`](crate::operation::associate_data_share_consumer::AssociateDataShareConsumerOutput::data_share_type): <p>The type of the datashare created by RegisterNamespace.</p>
18 /// - On failure, responds with [`SdkError<AssociateDataShareConsumerError>`](crate::operation::associate_data_share_consumer::AssociateDataShareConsumerError)
19 pub fn associate_data_share_consumer(
20 &self,
21 ) -> crate::operation::associate_data_share_consumer::builders::AssociateDataShareConsumerFluentBuilder {
22 crate::operation::associate_data_share_consumer::builders::AssociateDataShareConsumerFluentBuilder::new(self.handle.clone())
23 }
24}