Struct rusoto_iot::DetachThingPrincipalRequest[][src]

pub struct DetachThingPrincipalRequest {
    pub principal: String,
    pub thing_name: String,
}

The input for the DetachThingPrincipal operation.

Fields

If the principal is a certificate, this value must be ARN of the certificate. If the principal is an Amazon Cognito identity, this value must be the ID of the Amazon Cognito identity.

The name of the thing.

Trait Implementations

impl Default for DetachThingPrincipalRequest
[src]

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

impl Debug for DetachThingPrincipalRequest
[src]

Formats the value using the given formatter. Read more

impl Clone for DetachThingPrincipalRequest
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

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