aws_db_esdk/client/
resolve_attributes.rs

1// Copyright Amazon.com Inc. or its affiliates. All Rights Reserved.
2// SPDX-License-Identifier: Apache-2.0
3// Do not modify this file. This file is machine generated, and any changes to it will be overwritten.
4impl crate::client::Client {
5    /// Constructs a fluent builder for the [`ResolveAttributes`](crate::operation::resolve_attributes::builders::ResolveAttributesFluentBuilder) operation.
6    ///
7    /// - The fluent builder is configurable:
8    ///   - [`item(impl Into<Option<::std::collections::HashMap<::std::string::String, aws_sdk_dynamodb::types::AttributeValue>>>)`](crate::operation::resolve_attributes::builders::ResolveAttributesFluentBuilder::item) / [`set_item(Option<::std::collections::HashMap<::std::string::String, aws_sdk_dynamodb::types::AttributeValue>>)`](crate::operation::resolve_attributes::builders::ResolveAttributesFluentBuilder::set_item): (undocumented)<br>
9    ///   - [`table_name(impl Into<Option<::std::string::String>>)`](crate::operation::resolve_attributes::builders::ResolveAttributesFluentBuilder::table_name) / [`set_table_name(Option<::std::string::String>)`](crate::operation::resolve_attributes::builders::ResolveAttributesFluentBuilder::set_table_name): (undocumented)<br>
10    ///   - [`version(impl Into<Option<::std::primitive::i32>>)`](crate::operation::resolve_attributes::builders::ResolveAttributesFluentBuilder::version) / [`set_version(Option<::std::primitive::i32>)`](crate::operation::resolve_attributes::builders::ResolveAttributesFluentBuilder::set_version): (undocumented)<br>
11    /// - On success, responds with [`ResolveAttributesOutput`](crate::operation::resolve_attributes::ResolveAttributesOutput) with field(s):
12    ///   - [`compound_beacons(Option<::std::collections::HashMap<::std::string::String, ::std::string::String>>)`](crate::operation::resolve_attributes::ResolveAttributesOutput::compound_beacons): (undocumented)
13    ///   - [`virtual_fields(Option<::std::collections::HashMap<::std::string::String, ::std::string::String>>)`](crate::operation::resolve_attributes::ResolveAttributesOutput::virtual_fields): (undocumented)
14    /// - On failure, responds with [`SdkError<ResolveAttributesError>`](crate::operation::resolve_attributes::ResolveAttributesError)
15    pub fn resolve_attributes(
16        &self,
17    ) -> crate::operation::resolve_attributes::builders::ResolveAttributesFluentBuilder {
18        crate::operation::resolve_attributes::builders::ResolveAttributesFluentBuilder::new(
19            self.clone(),
20        )
21    }
22}