Struct aws_sdk_iot::input::CreateThingTypeInput [−][src]
#[non_exhaustive]pub struct CreateThingTypeInput {
pub thing_type_name: Option<String>,
pub thing_type_properties: Option<ThingTypeProperties>,
pub tags: Option<Vec<Tag>>,
}
Expand description
The input for the CreateThingType operation.
Fields (Non-exhaustive)
This struct is marked as non-exhaustive
Struct { .. }
syntax; cannot be matched against without a wildcard ..
; and struct update syntax will not work.thing_type_name: Option<String>
The name of the thing type.
thing_type_properties: Option<ThingTypeProperties>
The ThingTypeProperties for the thing type to create. It contains information about the new thing type including a description, and a list of searchable thing attribute names.
Metadata which can be used to manage the thing type.
Implementations
pub async fn make_operation(
&self,
_config: &Config
) -> Result<Operation<CreateThingType, AwsErrorRetryPolicy>, BuildError>
pub async fn make_operation(
&self,
_config: &Config
) -> Result<Operation<CreateThingType, AwsErrorRetryPolicy>, BuildError>
Consumes the builder and constructs an Operation<CreateThingType
>
Creates a new builder-style object to manufacture CreateThingTypeInput
The name of the thing type.
The ThingTypeProperties for the thing type to create. It contains information about the new thing type including a description, and a list of searchable thing attribute names.
Metadata which can be used to manage the thing type.
Trait Implementations
This method tests for self
and other
values to be equal, and is used
by ==
. Read more
This method tests for !=
.
Auto Trait Implementations
impl RefUnwindSafe for CreateThingTypeInput
impl Send for CreateThingTypeInput
impl Sync for CreateThingTypeInput
impl Unpin for CreateThingTypeInput
impl UnwindSafe for CreateThingTypeInput
Blanket Implementations
Mutably borrows from an owned value. Read more
Attaches the provided Subscriber
to this type, returning a
WithDispatch
wrapper. Read more
Attaches the current default Subscriber
to this type, returning a
WithDispatch
wrapper. Read more