[][src]Struct rusoto_iot::UpdateProvisioningTemplateRequest

pub struct UpdateProvisioningTemplateRequest {
    pub default_version_id: Option<i64>,
    pub description: Option<String>,
    pub enabled: Option<bool>,
    pub provisioning_role_arn: Option<String>,
    pub template_name: String,
}

Fields

default_version_id: Option<i64>

The ID of the default provisioning template version.

description: Option<String>

The description of the fleet provisioning template.

enabled: Option<bool>

True to enable the fleet provisioning template, otherwise false.

provisioning_role_arn: Option<String>

The ARN of the role associated with the provisioning template. This IoT role grants permission to provision a device.

template_name: String

The name of the fleet provisioning template.

Trait Implementations

impl Clone for UpdateProvisioningTemplateRequest[src]

impl Debug for UpdateProvisioningTemplateRequest[src]

impl Default for UpdateProvisioningTemplateRequest[src]

impl PartialEq<UpdateProvisioningTemplateRequest> for UpdateProvisioningTemplateRequest[src]

impl Serialize for UpdateProvisioningTemplateRequest[src]

impl StructuralPartialEq for UpdateProvisioningTemplateRequest[src]

Auto Trait Implementations

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> Same<T> for T

type Output = T

Should always be Self

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.