Struct aws_sdk_iot::types::ThingGroupDocument
source · #[non_exhaustive]pub struct ThingGroupDocument {
pub thing_group_name: Option<String>,
pub thing_group_id: Option<String>,
pub thing_group_description: Option<String>,
pub attributes: Option<HashMap<String, String>>,
pub parent_group_names: Option<Vec<String>>,
}
Expand description
The thing group search index document.
Fields (Non-exhaustive)§
This struct is marked as non-exhaustive
Non-exhaustive structs could have additional fields added in future. Therefore, non-exhaustive structs cannot be constructed in external crates using the traditional
Struct { .. }
syntax; cannot be matched against without a wildcard ..
; and struct update syntax will not work.thing_group_name: Option<String>
The thing group name.
thing_group_id: Option<String>
The thing group ID.
thing_group_description: Option<String>
The thing group description.
attributes: Option<HashMap<String, String>>
The thing group attributes.
parent_group_names: Option<Vec<String>>
Parent group names.
Implementations§
source§impl ThingGroupDocument
impl ThingGroupDocument
sourcepub fn thing_group_name(&self) -> Option<&str>
pub fn thing_group_name(&self) -> Option<&str>
The thing group name.
sourcepub fn thing_group_id(&self) -> Option<&str>
pub fn thing_group_id(&self) -> Option<&str>
The thing group ID.
sourcepub fn thing_group_description(&self) -> Option<&str>
pub fn thing_group_description(&self) -> Option<&str>
The thing group description.
sourcepub fn parent_group_names(&self) -> &[String]
pub fn parent_group_names(&self) -> &[String]
Parent group names.
If no value was sent for this field, a default will be set. If you want to determine if no value was sent, use .parent_group_names.is_none()
.
source§impl ThingGroupDocument
impl ThingGroupDocument
sourcepub fn builder() -> ThingGroupDocumentBuilder
pub fn builder() -> ThingGroupDocumentBuilder
Creates a new builder-style object to manufacture ThingGroupDocument
.
Trait Implementations§
source§impl Clone for ThingGroupDocument
impl Clone for ThingGroupDocument
source§fn clone(&self) -> ThingGroupDocument
fn clone(&self) -> ThingGroupDocument
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 ThingGroupDocument
impl Debug for ThingGroupDocument
source§impl PartialEq for ThingGroupDocument
impl PartialEq for ThingGroupDocument
source§fn eq(&self, other: &ThingGroupDocument) -> bool
fn eq(&self, other: &ThingGroupDocument) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.impl StructuralPartialEq for ThingGroupDocument
Auto Trait Implementations§
impl RefUnwindSafe for ThingGroupDocument
impl Send for ThingGroupDocument
impl Sync for ThingGroupDocument
impl Unpin for ThingGroupDocument
impl UnwindSafe for ThingGroupDocument
Blanket Implementations§
source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
source§impl<T> Instrument for T
impl<T> Instrument for T
source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
source§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
Creates a shared type from an unshared type.