Struct aws_sdk_iottwinmaker::operation::get_property_value::builders::GetPropertyValueFluentBuilder
source · pub struct GetPropertyValueFluentBuilder { /* private fields */ }Expand description
Fluent builder constructing a request to GetPropertyValue.
Gets the property values for a component, component type, entity, or workspace.
You must specify a value for either componentName, componentTypeId, entityId, or workspaceId.
Implementations§
source§impl GetPropertyValueFluentBuilder
impl GetPropertyValueFluentBuilder
sourcepub async fn customize(
self
) -> Result<CustomizableOperation<GetPropertyValue, AwsResponseRetryClassifier>, SdkError<GetPropertyValueError>>
pub async fn customize( self ) -> Result<CustomizableOperation<GetPropertyValue, AwsResponseRetryClassifier>, SdkError<GetPropertyValueError>>
Consume this builder, creating a customizable operation that can be modified before being sent. The operation’s inner http::Request can be modified as well.
sourcepub async fn send(
self
) -> Result<GetPropertyValueOutput, SdkError<GetPropertyValueError>>
pub async fn send( self ) -> Result<GetPropertyValueOutput, SdkError<GetPropertyValueError>>
Sends the request and returns the response.
If an error occurs, an SdkError will be returned with additional details that
can be matched against.
By default, any retryable failures will be retried twice. Retry behavior is configurable with the RetryConfig, which can be set when configuring the client.
sourcepub fn into_paginator(self) -> GetPropertyValuePaginator
pub fn into_paginator(self) -> GetPropertyValuePaginator
Create a paginator for this request
Paginators are used by calling send().await which returns a Stream.
sourcepub fn component_name(self, input: impl Into<String>) -> Self
pub fn component_name(self, input: impl Into<String>) -> Self
The name of the component whose property values the operation returns.
sourcepub fn set_component_name(self, input: Option<String>) -> Self
pub fn set_component_name(self, input: Option<String>) -> Self
The name of the component whose property values the operation returns.
sourcepub fn component_type_id(self, input: impl Into<String>) -> Self
pub fn component_type_id(self, input: impl Into<String>) -> Self
The ID of the component type whose property values the operation returns.
sourcepub fn set_component_type_id(self, input: Option<String>) -> Self
pub fn set_component_type_id(self, input: Option<String>) -> Self
The ID of the component type whose property values the operation returns.
sourcepub fn entity_id(self, input: impl Into<String>) -> Self
pub fn entity_id(self, input: impl Into<String>) -> Self
The ID of the entity whose property values the operation returns.
sourcepub fn set_entity_id(self, input: Option<String>) -> Self
pub fn set_entity_id(self, input: Option<String>) -> Self
The ID of the entity whose property values the operation returns.
sourcepub fn selected_properties(self, input: impl Into<String>) -> Self
pub fn selected_properties(self, input: impl Into<String>) -> Self
Appends an item to selectedProperties.
To override the contents of this collection use set_selected_properties.
The properties whose values the operation returns.
sourcepub fn set_selected_properties(self, input: Option<Vec<String>>) -> Self
pub fn set_selected_properties(self, input: Option<Vec<String>>) -> Self
The properties whose values the operation returns.
sourcepub fn workspace_id(self, input: impl Into<String>) -> Self
pub fn workspace_id(self, input: impl Into<String>) -> Self
The ID of the workspace whose values the operation returns.
sourcepub fn set_workspace_id(self, input: Option<String>) -> Self
pub fn set_workspace_id(self, input: Option<String>) -> Self
The ID of the workspace whose values the operation returns.
sourcepub fn max_results(self, input: i32) -> Self
pub fn max_results(self, input: i32) -> Self
The maximum number of results to return at one time. The default is 25.
Valid Range: Minimum value of 1. Maximum value of 250.
sourcepub fn set_max_results(self, input: Option<i32>) -> Self
pub fn set_max_results(self, input: Option<i32>) -> Self
The maximum number of results to return at one time. The default is 25.
Valid Range: Minimum value of 1. Maximum value of 250.
sourcepub fn next_token(self, input: impl Into<String>) -> Self
pub fn next_token(self, input: impl Into<String>) -> Self
The string that specifies the next page of results.
sourcepub fn set_next_token(self, input: Option<String>) -> Self
pub fn set_next_token(self, input: Option<String>) -> Self
The string that specifies the next page of results.
sourcepub fn property_group_name(self, input: impl Into<String>) -> Self
pub fn property_group_name(self, input: impl Into<String>) -> Self
The property group name.
sourcepub fn set_property_group_name(self, input: Option<String>) -> Self
pub fn set_property_group_name(self, input: Option<String>) -> Self
The property group name.
sourcepub fn tabular_conditions(self, input: TabularConditions) -> Self
pub fn tabular_conditions(self, input: TabularConditions) -> Self
The tabular conditions.
sourcepub fn set_tabular_conditions(self, input: Option<TabularConditions>) -> Self
pub fn set_tabular_conditions(self, input: Option<TabularConditions>) -> Self
The tabular conditions.
Trait Implementations§
source§impl Clone for GetPropertyValueFluentBuilder
impl Clone for GetPropertyValueFluentBuilder
source§fn clone(&self) -> GetPropertyValueFluentBuilder
fn clone(&self) -> GetPropertyValueFluentBuilder
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source. Read more