aws-sdk-glue 1.163.0

AWS SDK for AWS Glue
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
// Code generated by software.amazon.smithy.rust.codegen.smithy-rs. DO NOT EDIT.
impl super::Client {
    /// Constructs a fluent builder for the [`BatchGetIterableForms`](crate::operation::batch_get_iterable_forms::builders::BatchGetIterableFormsFluentBuilder) operation.
    ///
    /// - The fluent builder is configurable:
    ///   - [`asset_identifier(impl Into<String>)`](crate::operation::batch_get_iterable_forms::builders::BatchGetIterableFormsFluentBuilder::asset_identifier) / [`set_asset_identifier(Option<String>)`](crate::operation::batch_get_iterable_forms::builders::BatchGetIterableFormsFluentBuilder::set_asset_identifier):<br>required: **true**<br><p>The unique identifier of the asset.</p><br>
    ///   - [`iterable_form_name(impl Into<String>)`](crate::operation::batch_get_iterable_forms::builders::BatchGetIterableFormsFluentBuilder::iterable_form_name) / [`set_iterable_form_name(Option<String>)`](crate::operation::batch_get_iterable_forms::builders::BatchGetIterableFormsFluentBuilder::set_iterable_form_name):<br>required: **true**<br><p>The name of the iterable form to retrieve items from.</p><br>
    ///   - [`item_identifiers(impl Into<String>)`](crate::operation::batch_get_iterable_forms::builders::BatchGetIterableFormsFluentBuilder::item_identifiers) / [`set_item_identifiers(Option<Vec::<String>>)`](crate::operation::batch_get_iterable_forms::builders::BatchGetIterableFormsFluentBuilder::set_item_identifiers):<br>required: **true**<br><p>The list of item identifiers to retrieve. Each identifier can be an item ID or item name.</p><br>
    /// - On success, responds with [`BatchGetIterableFormsOutput`](crate::operation::batch_get_iterable_forms::BatchGetIterableFormsOutput) with field(s):
    ///   - [`items(Option<Vec::<IterableFormItem>>)`](crate::operation::batch_get_iterable_forms::BatchGetIterableFormsOutput::items): <p>The list of retrieved iterable form items.</p>
    ///   - [`errors(Option<Vec::<ItemError>>)`](crate::operation::batch_get_iterable_forms::BatchGetIterableFormsOutput::errors): <p>The list of errors for items that could not be retrieved.</p>
    /// - On failure, responds with [`SdkError<BatchGetIterableFormsError>`](crate::operation::batch_get_iterable_forms::BatchGetIterableFormsError)
    pub fn batch_get_iterable_forms(&self) -> crate::operation::batch_get_iterable_forms::builders::BatchGetIterableFormsFluentBuilder {
        crate::operation::batch_get_iterable_forms::builders::BatchGetIterableFormsFluentBuilder::new(self.handle.clone())
    }
}