Struct aws_sdk_iot::model::ThingTypeProperties
source · #[non_exhaustive]pub struct ThingTypeProperties { /* private fields */ }
Expand description
The ThingTypeProperties contains information about the thing type including: a thing type description, and a list of searchable thing attribute names.
Implementations§
source§impl ThingTypeProperties
impl ThingTypeProperties
sourcepub fn thing_type_description(&self) -> Option<&str>
pub fn thing_type_description(&self) -> Option<&str>
The description of the thing type.
sourcepub fn searchable_attributes(&self) -> Option<&[String]>
pub fn searchable_attributes(&self) -> Option<&[String]>
A list of searchable thing attribute names.
source§impl ThingTypeProperties
impl ThingTypeProperties
sourcepub fn builder() -> Builder
pub fn builder() -> Builder
Creates a new builder-style object to manufacture ThingTypeProperties
.
Trait Implementations§
source§impl Clone for ThingTypeProperties
impl Clone for ThingTypeProperties
source§fn clone(&self) -> ThingTypeProperties
fn clone(&self) -> ThingTypeProperties
Returns a copy of the value. Read more
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moresource§impl Debug for ThingTypeProperties
impl Debug for ThingTypeProperties
source§impl PartialEq<ThingTypeProperties> for ThingTypeProperties
impl PartialEq<ThingTypeProperties> for ThingTypeProperties
source§fn eq(&self, other: &ThingTypeProperties) -> bool
fn eq(&self, other: &ThingTypeProperties) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.