Struct rusoto_iot::ThingGroupMetadata[][src]

pub struct ThingGroupMetadata {
    pub creation_date: Option<f64>,
    pub parent_group_name: Option<String>,
    pub root_to_parent_thing_groups: Option<Vec<GroupNameAndArn>>,
}

Thing group metadata.

Fields

The UNIX timestamp of when the thing group was created.

The parent thing group name.

The root parent thing group.

Trait Implementations

impl Default for ThingGroupMetadata
[src]

Returns the "default value" for a type. Read more

impl Debug for ThingGroupMetadata
[src]

Formats the value using the given formatter. Read more

impl Clone for ThingGroupMetadata
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl PartialEq for ThingGroupMetadata
[src]

This method tests for self and other values to be equal, and is used by ==. Read more

This method tests for !=.

Auto Trait Implementations