aws_sdk_datazone/client/batch_get_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 [`BatchGetAttributesMetadata`](crate::operation::batch_get_attributes_metadata::builders::BatchGetAttributesMetadataFluentBuilder) operation.
4 ///
5 /// - The fluent builder is configurable:
6 /// - [`domain_identifier(impl Into<String>)`](crate::operation::batch_get_attributes_metadata::builders::BatchGetAttributesMetadataFluentBuilder::domain_identifier) / [`set_domain_identifier(Option<String>)`](crate::operation::batch_get_attributes_metadata::builders::BatchGetAttributesMetadataFluentBuilder::set_domain_identifier):<br>required: **true**<br><p>The domain ID where you want to get the attribute metadata.</p><br>
7 /// - [`entity_type(AttributeEntityType)`](crate::operation::batch_get_attributes_metadata::builders::BatchGetAttributesMetadataFluentBuilder::entity_type) / [`set_entity_type(Option<AttributeEntityType>)`](crate::operation::batch_get_attributes_metadata::builders::BatchGetAttributesMetadataFluentBuilder::set_entity_type):<br>required: **true**<br><p>The entity type for which you want to get attribute metadata.</p><br>
8 /// - [`entity_identifier(impl Into<String>)`](crate::operation::batch_get_attributes_metadata::builders::BatchGetAttributesMetadataFluentBuilder::entity_identifier) / [`set_entity_identifier(Option<String>)`](crate::operation::batch_get_attributes_metadata::builders::BatchGetAttributesMetadataFluentBuilder::set_entity_identifier):<br>required: **true**<br><p>The entity ID for which you want to get attribute metadata.</p><br>
9 /// - [`entity_revision(impl Into<String>)`](crate::operation::batch_get_attributes_metadata::builders::BatchGetAttributesMetadataFluentBuilder::entity_revision) / [`set_entity_revision(Option<String>)`](crate::operation::batch_get_attributes_metadata::builders::BatchGetAttributesMetadataFluentBuilder::set_entity_revision):<br>required: **false**<br><p>The entity revision for which you want to get attribute metadata.</p><br>
10 /// - [`attribute_identifiers(impl Into<String>)`](crate::operation::batch_get_attributes_metadata::builders::BatchGetAttributesMetadataFluentBuilder::attribute_identifiers) / [`set_attribute_identifiers(Option<Vec::<String>>)`](crate::operation::batch_get_attributes_metadata::builders::BatchGetAttributesMetadataFluentBuilder::set_attribute_identifiers):<br>required: **true**<br><p>The attribute identifier.</p><br>
11 /// - On success, responds with [`BatchGetAttributesMetadataOutput`](crate::operation::batch_get_attributes_metadata::BatchGetAttributesMetadataOutput) with field(s):
12 /// - [`attributes(Option<Vec::<BatchGetAttributeOutput>>)`](crate::operation::batch_get_attributes_metadata::BatchGetAttributesMetadataOutput::attributes): <p>The results of the BatchGetAttributesMetadata action.</p>
13 /// - [`errors(Vec::<AttributeError>)`](crate::operation::batch_get_attributes_metadata::BatchGetAttributesMetadataOutput::errors): <p>The errors generated when the BatchGetAttributesMetadata action is invoked.</p>
14 /// - On failure, responds with [`SdkError<BatchGetAttributesMetadataError>`](crate::operation::batch_get_attributes_metadata::BatchGetAttributesMetadataError)
15 pub fn batch_get_attributes_metadata(
16 &self,
17 ) -> crate::operation::batch_get_attributes_metadata::builders::BatchGetAttributesMetadataFluentBuilder {
18 crate::operation::batch_get_attributes_metadata::builders::BatchGetAttributesMetadataFluentBuilder::new(self.handle.clone())
19 }
20}