Struct rusoto_iot::DeleteThingRequest[][src]

pub struct DeleteThingRequest {
    pub expected_version: Option<i64>,
    pub thing_name: String,
}

The input for the DeleteThing operation.

Fields

The expected version of the thing record in the registry. If the version of the record in the registry does not match the expected version specified in the request, the DeleteThing request is rejected with a VersionConflictException.

The name of the thing to delete.

Trait Implementations

impl Default for DeleteThingRequest
[src]

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

impl Debug for DeleteThingRequest
[src]

Formats the value using the given formatter. Read more

impl Clone for DeleteThingRequest
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl PartialEq for DeleteThingRequest
[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