aws_sdk_datazone/client/
batch_put_attributes_metadata.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 [`BatchPutAttributesMetadata`](crate::operation::batch_put_attributes_metadata::builders::BatchPutAttributesMetadataFluentBuilder) operation.
4    ///
5    /// - The fluent builder is configurable:
6    ///   - [`domain_identifier(impl Into<String>)`](crate::operation::batch_put_attributes_metadata::builders::BatchPutAttributesMetadataFluentBuilder::domain_identifier) / [`set_domain_identifier(Option<String>)`](crate::operation::batch_put_attributes_metadata::builders::BatchPutAttributesMetadataFluentBuilder::set_domain_identifier):<br>required: **true**<br><p>The domain ID where you want to write the attribute metadata.</p><br>
7    ///   - [`entity_type(AttributeEntityType)`](crate::operation::batch_put_attributes_metadata::builders::BatchPutAttributesMetadataFluentBuilder::entity_type) / [`set_entity_type(Option<AttributeEntityType>)`](crate::operation::batch_put_attributes_metadata::builders::BatchPutAttributesMetadataFluentBuilder::set_entity_type):<br>required: **true**<br><p>The entity type for which you want to write the attribute metadata.</p><br>
8    ///   - [`entity_identifier(impl Into<String>)`](crate::operation::batch_put_attributes_metadata::builders::BatchPutAttributesMetadataFluentBuilder::entity_identifier) / [`set_entity_identifier(Option<String>)`](crate::operation::batch_put_attributes_metadata::builders::BatchPutAttributesMetadataFluentBuilder::set_entity_identifier):<br>required: **true**<br><p>The entity ID for which you want to write the attribute metadata.</p><br>
9    ///   - [`client_token(impl Into<String>)`](crate::operation::batch_put_attributes_metadata::builders::BatchPutAttributesMetadataFluentBuilder::client_token) / [`set_client_token(Option<String>)`](crate::operation::batch_put_attributes_metadata::builders::BatchPutAttributesMetadataFluentBuilder::set_client_token):<br>required: **false**<br><p>A unique, case-sensitive identifier to ensure idempotency of the request. This field is automatically populated if not provided.</p><br>
10    ///   - [`attributes(AttributeInput)`](crate::operation::batch_put_attributes_metadata::builders::BatchPutAttributesMetadataFluentBuilder::attributes) / [`set_attributes(Option<Vec::<AttributeInput>>)`](crate::operation::batch_put_attributes_metadata::builders::BatchPutAttributesMetadataFluentBuilder::set_attributes):<br>required: **true**<br><p>The attributes of the metadata.</p><br>
11    /// - On success, responds with [`BatchPutAttributesMetadataOutput`](crate::operation::batch_put_attributes_metadata::BatchPutAttributesMetadataOutput) with field(s):
12    ///   - [`errors(Option<Vec::<AttributeError>>)`](crate::operation::batch_put_attributes_metadata::BatchPutAttributesMetadataOutput::errors): <p>The errors generated when the BatchPutAttributeMetadata action is invoked.</p>
13    ///   - [`attributes(Option<Vec::<BatchPutAttributeOutput>>)`](crate::operation::batch_put_attributes_metadata::BatchPutAttributesMetadataOutput::attributes): <p>The results of the BatchPutAttributeMetadata action.</p>
14    /// - On failure, responds with [`SdkError<BatchPutAttributesMetadataError>`](crate::operation::batch_put_attributes_metadata::BatchPutAttributesMetadataError)
15    pub fn batch_put_attributes_metadata(
16        &self,
17    ) -> crate::operation::batch_put_attributes_metadata::builders::BatchPutAttributesMetadataFluentBuilder {
18        crate::operation::batch_put_attributes_metadata::builders::BatchPutAttributesMetadataFluentBuilder::new(self.handle.clone())
19    }
20}