// Code generated by software.amazon.smithy.rust.codegen.smithy-rs. DO NOT EDIT.
impl super::Client {
/// Constructs a fluent builder for the [`BatchPutAttributesMetadata`](crate::operation::batch_put_attributes_metadata::builders::BatchPutAttributesMetadataFluentBuilder) operation.
///
/// - The fluent builder is configurable:
/// - [`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>
/// - [`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>
/// - [`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>
/// - [`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>
/// - [`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>
/// - On success, responds with [`BatchPutAttributesMetadataOutput`](crate::operation::batch_put_attributes_metadata::BatchPutAttributesMetadataOutput) with field(s):
/// - [`errors(Option<Vec::<AttributeError>>)`](crate::operation::batch_put_attributes_metadata::BatchPutAttributesMetadataOutput::errors): <p>The errors generated when the BatchPutAttributeMetadata action is invoked.</p>
/// - [`attributes(Option<Vec::<BatchPutAttributeOutput>>)`](crate::operation::batch_put_attributes_metadata::BatchPutAttributesMetadataOutput::attributes): <p>The results of the BatchPutAttributeMetadata action.</p>
/// - On failure, responds with [`SdkError<BatchPutAttributesMetadataError>`](crate::operation::batch_put_attributes_metadata::BatchPutAttributesMetadataError)
pub fn batch_put_attributes_metadata(
&self,
) -> crate::operation::batch_put_attributes_metadata::builders::BatchPutAttributesMetadataFluentBuilder {
crate::operation::batch_put_attributes_metadata::builders::BatchPutAttributesMetadataFluentBuilder::new(self.handle.clone())
}
}