[][src]Struct rusoto_iot::DescribeProvisioningTemplateResponse

pub struct DescribeProvisioningTemplateResponse {
    pub creation_date: Option<f64>,
    pub default_version_id: Option<i64>,
    pub description: Option<String>,
    pub enabled: Option<bool>,
    pub last_modified_date: Option<f64>,
    pub provisioning_role_arn: Option<String>,
    pub template_arn: Option<String>,
    pub template_body: Option<String>,
    pub template_name: Option<String>,
}

Fields

creation_date: Option<f64>

The date when the fleet provisioning template was created.

default_version_id: Option<i64>

The default fleet template version ID.

description: Option<String>

The description of the fleet provisioning template.

enabled: Option<bool>

True if the fleet provisioning template is enabled, otherwise false.

last_modified_date: Option<f64>

The date when the fleet provisioning template was last modified.

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_arn: Option<String>

The ARN of the fleet provisioning template.

template_body: Option<String>

The JSON formatted contents of the fleet provisioning template.

template_name: Option<String>

The name of the fleet provisioning template.

Trait Implementations

impl Clone for DescribeProvisioningTemplateResponse[src]

impl Debug for DescribeProvisioningTemplateResponse[src]

impl Default for DescribeProvisioningTemplateResponse[src]

impl<'de> Deserialize<'de> for DescribeProvisioningTemplateResponse[src]

impl PartialEq<DescribeProvisioningTemplateResponse> for DescribeProvisioningTemplateResponse[src]

impl StructuralPartialEq for DescribeProvisioningTemplateResponse[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> DeserializeOwned for T where
    T: Deserialize<'de>, 
[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.