1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
// Code generated by software.amazon.smithy.rust.codegen.smithy-rs. DO NOT EDIT.
impl super::Client {
    /// Constructs a fluent builder for the [`GetPropertyValue`](crate::operation::get_property_value::builders::GetPropertyValueFluentBuilder) operation.
    /// This operation supports pagination; See [`into_paginator()`](crate::operation::get_property_value::builders::GetPropertyValueFluentBuilder::into_paginator).
    ///
    /// - The fluent builder is configurable:
    ///   - [`component_name(impl Into<String>)`](crate::operation::get_property_value::builders::GetPropertyValueFluentBuilder::component_name) / [`set_component_name(Option<String>)`](crate::operation::get_property_value::builders::GetPropertyValueFluentBuilder::set_component_name): <p>The name of the component whose property values the operation returns.</p>
    ///   - [`component_type_id(impl Into<String>)`](crate::operation::get_property_value::builders::GetPropertyValueFluentBuilder::component_type_id) / [`set_component_type_id(Option<String>)`](crate::operation::get_property_value::builders::GetPropertyValueFluentBuilder::set_component_type_id): <p>The ID of the component type whose property values the operation returns.</p>
    ///   - [`entity_id(impl Into<String>)`](crate::operation::get_property_value::builders::GetPropertyValueFluentBuilder::entity_id) / [`set_entity_id(Option<String>)`](crate::operation::get_property_value::builders::GetPropertyValueFluentBuilder::set_entity_id): <p>The ID of the entity whose property values the operation returns.</p>
    ///   - [`selected_properties(Vec<String>)`](crate::operation::get_property_value::builders::GetPropertyValueFluentBuilder::selected_properties) / [`set_selected_properties(Option<Vec<String>>)`](crate::operation::get_property_value::builders::GetPropertyValueFluentBuilder::set_selected_properties): <p>The properties whose values the operation returns.</p>
    ///   - [`workspace_id(impl Into<String>)`](crate::operation::get_property_value::builders::GetPropertyValueFluentBuilder::workspace_id) / [`set_workspace_id(Option<String>)`](crate::operation::get_property_value::builders::GetPropertyValueFluentBuilder::set_workspace_id): <p>The ID of the workspace whose values the operation returns.</p>
    ///   - [`max_results(i32)`](crate::operation::get_property_value::builders::GetPropertyValueFluentBuilder::max_results) / [`set_max_results(Option<i32>)`](crate::operation::get_property_value::builders::GetPropertyValueFluentBuilder::set_max_results): <p>The maximum number of results to return at one time. The default is 25.</p>  <p>Valid Range: Minimum value of 1. Maximum value of 250.</p>
    ///   - [`next_token(impl Into<String>)`](crate::operation::get_property_value::builders::GetPropertyValueFluentBuilder::next_token) / [`set_next_token(Option<String>)`](crate::operation::get_property_value::builders::GetPropertyValueFluentBuilder::set_next_token): <p>The string that specifies the next page of results.</p>
    ///   - [`property_group_name(impl Into<String>)`](crate::operation::get_property_value::builders::GetPropertyValueFluentBuilder::property_group_name) / [`set_property_group_name(Option<String>)`](crate::operation::get_property_value::builders::GetPropertyValueFluentBuilder::set_property_group_name): <p>The property group name.</p>
    ///   - [`tabular_conditions(TabularConditions)`](crate::operation::get_property_value::builders::GetPropertyValueFluentBuilder::tabular_conditions) / [`set_tabular_conditions(Option<TabularConditions>)`](crate::operation::get_property_value::builders::GetPropertyValueFluentBuilder::set_tabular_conditions): <p>The tabular conditions.</p>
    /// - On success, responds with [`GetPropertyValueOutput`](crate::operation::get_property_value::GetPropertyValueOutput) with field(s):
    ///   - [`property_values(Option<HashMap<String, PropertyLatestValue>>)`](crate::operation::get_property_value::GetPropertyValueOutput::property_values): <p>An object that maps strings to the properties and latest property values in the response. Each string in the mapping must be unique to this object.</p>
    ///   - [`next_token(Option<String>)`](crate::operation::get_property_value::GetPropertyValueOutput::next_token): <p>The string that specifies the next page of results.</p>
    ///   - [`tabular_property_values(Option<Vec<Vec<HashMap<String, DataValue>>>>)`](crate::operation::get_property_value::GetPropertyValueOutput::tabular_property_values): <p>A table of property values.</p>
    /// - On failure, responds with [`SdkError<GetPropertyValueError>`](crate::operation::get_property_value::GetPropertyValueError)
    pub fn get_property_value(
        &self,
    ) -> crate::operation::get_property_value::builders::GetPropertyValueFluentBuilder {
        crate::operation::get_property_value::builders::GetPropertyValueFluentBuilder::new(
            self.handle.clone(),
        )
    }
}