Struct aws_sdk_iottwinmaker::operation::get_property_value::builders::GetPropertyValueOutputBuilder
source · #[non_exhaustive]pub struct GetPropertyValueOutputBuilder { /* private fields */ }
Expand description
A builder for GetPropertyValueOutput
.
Implementations§
source§impl GetPropertyValueOutputBuilder
impl GetPropertyValueOutputBuilder
sourcepub fn property_values(
self,
k: impl Into<String>,
v: PropertyLatestValue
) -> Self
pub fn property_values( self, k: impl Into<String>, v: PropertyLatestValue ) -> Self
Adds a key-value pair to property_values
.
To override the contents of this collection use set_property_values
.
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.
sourcepub fn set_property_values(
self,
input: Option<HashMap<String, PropertyLatestValue>>
) -> Self
pub fn set_property_values( self, input: Option<HashMap<String, PropertyLatestValue>> ) -> Self
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.
sourcepub fn get_property_values(
&self
) -> &Option<HashMap<String, PropertyLatestValue>>
pub fn get_property_values( &self ) -> &Option<HashMap<String, PropertyLatestValue>>
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.
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 tabular_property_values(
self,
input: Vec<HashMap<String, DataValue>>
) -> Self
pub fn tabular_property_values( self, input: Vec<HashMap<String, DataValue>> ) -> Self
Appends an item to tabular_property_values
.
To override the contents of this collection use set_tabular_property_values
.
A table of property values.
sourcepub fn set_tabular_property_values(
self,
input: Option<Vec<Vec<HashMap<String, DataValue>>>>
) -> Self
pub fn set_tabular_property_values( self, input: Option<Vec<Vec<HashMap<String, DataValue>>>> ) -> Self
A table of property values.
sourcepub fn get_tabular_property_values(
&self
) -> &Option<Vec<Vec<HashMap<String, DataValue>>>>
pub fn get_tabular_property_values( &self ) -> &Option<Vec<Vec<HashMap<String, DataValue>>>>
A table of property values.
sourcepub fn build(self) -> GetPropertyValueOutput
pub fn build(self) -> GetPropertyValueOutput
Consumes the builder and constructs a GetPropertyValueOutput
.
Trait Implementations§
source§impl Clone for GetPropertyValueOutputBuilder
impl Clone for GetPropertyValueOutputBuilder
source§fn clone(&self) -> GetPropertyValueOutputBuilder
fn clone(&self) -> GetPropertyValueOutputBuilder
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moresource§impl Default for GetPropertyValueOutputBuilder
impl Default for GetPropertyValueOutputBuilder
source§fn default() -> GetPropertyValueOutputBuilder
fn default() -> GetPropertyValueOutputBuilder
source§impl PartialEq for GetPropertyValueOutputBuilder
impl PartialEq for GetPropertyValueOutputBuilder
source§fn eq(&self, other: &GetPropertyValueOutputBuilder) -> bool
fn eq(&self, other: &GetPropertyValueOutputBuilder) -> bool
self
and other
values to be equal, and is used
by ==
.