aws_sdk_cognitosync/client/
bulk_publish.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 [`BulkPublish`](crate::operation::bulk_publish::builders::BulkPublishFluentBuilder) operation.
4    ///
5    /// - The fluent builder is configurable:
6    ///   - [`identity_pool_id(impl Into<String>)`](crate::operation::bulk_publish::builders::BulkPublishFluentBuilder::identity_pool_id) / [`set_identity_pool_id(Option<String>)`](crate::operation::bulk_publish::builders::BulkPublishFluentBuilder::set_identity_pool_id):<br>required: **true**<br>A name-spaced GUID (for example, us-east-1:23EC4050-6AEA-7089-A2DD-08002EXAMPLE) created by Amazon Cognito. GUID generation is unique within a region.<br>
7    /// - On success, responds with [`BulkPublishOutput`](crate::operation::bulk_publish::BulkPublishOutput) with field(s):
8    ///   - [`identity_pool_id(Option<String>)`](crate::operation::bulk_publish::BulkPublishOutput::identity_pool_id): A name-spaced GUID (for example, us-east-1:23EC4050-6AEA-7089-A2DD-08002EXAMPLE) created by Amazon Cognito. GUID generation is unique within a region.
9    /// - On failure, responds with [`SdkError<BulkPublishError>`](crate::operation::bulk_publish::BulkPublishError)
10    pub fn bulk_publish(&self) -> crate::operation::bulk_publish::builders::BulkPublishFluentBuilder {
11        crate::operation::bulk_publish::builders::BulkPublishFluentBuilder::new(self.handle.clone())
12    }
13}