Struct aws_sdk_iottwinmaker::operation::get_property_value::builders::GetPropertyValueInputBuilder
source · #[non_exhaustive]pub struct GetPropertyValueInputBuilder { /* private fields */ }Expand description
A builder for GetPropertyValueInput.
Implementations§
source§impl GetPropertyValueInputBuilder
impl GetPropertyValueInputBuilder
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 get_component_name(&self) -> &Option<String>
pub fn get_component_name(&self) -> &Option<String>
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 get_component_type_id(&self) -> &Option<String>
pub fn get_component_type_id(&self) -> &Option<String>
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 get_entity_id(&self) -> &Option<String>
pub fn get_entity_id(&self) -> &Option<String>
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 selected_properties.
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 get_selected_properties(&self) -> &Option<Vec<String>>
pub fn get_selected_properties(&self) -> &Option<Vec<String>>
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.
This field is required.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 get_workspace_id(&self) -> &Option<String>
pub fn get_workspace_id(&self) -> &Option<String>
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 get_max_results(&self) -> &Option<i32>
pub fn get_max_results(&self) -> &Option<i32>
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 get_next_token(&self) -> &Option<String>
pub fn get_next_token(&self) -> &Option<String>
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 get_property_group_name(&self) -> &Option<String>
pub fn get_property_group_name(&self) -> &Option<String>
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.
sourcepub fn get_tabular_conditions(&self) -> &Option<TabularConditions>
pub fn get_tabular_conditions(&self) -> &Option<TabularConditions>
The tabular conditions.
sourcepub fn build(self) -> Result<GetPropertyValueInput, BuildError>
pub fn build(self) -> Result<GetPropertyValueInput, BuildError>
Consumes the builder and constructs a GetPropertyValueInput.
source§impl GetPropertyValueInputBuilder
impl GetPropertyValueInputBuilder
sourcepub async fn send_with(
self,
client: &Client
) -> Result<GetPropertyValueOutput, SdkError<GetPropertyValueError, HttpResponse>>
pub async fn send_with( self, client: &Client ) -> Result<GetPropertyValueOutput, SdkError<GetPropertyValueError, HttpResponse>>
Sends a request with this input using the given client.
Trait Implementations§
source§impl Clone for GetPropertyValueInputBuilder
impl Clone for GetPropertyValueInputBuilder
source§fn clone(&self) -> GetPropertyValueInputBuilder
fn clone(&self) -> GetPropertyValueInputBuilder
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source. Read moresource§impl Debug for GetPropertyValueInputBuilder
impl Debug for GetPropertyValueInputBuilder
source§impl Default for GetPropertyValueInputBuilder
impl Default for GetPropertyValueInputBuilder
source§fn default() -> GetPropertyValueInputBuilder
fn default() -> GetPropertyValueInputBuilder
source§impl PartialEq for GetPropertyValueInputBuilder
impl PartialEq for GetPropertyValueInputBuilder
source§fn eq(&self, other: &GetPropertyValueInputBuilder) -> bool
fn eq(&self, other: &GetPropertyValueInputBuilder) -> bool
self and other values to be equal, and is used
by ==.