Struct aws_sdk_iot::types::ProvisioningTemplateSummary
source · #[non_exhaustive]pub struct ProvisioningTemplateSummary { /* private fields */ }
Expand description
A summary of information about a provisioning template.
Implementations§
source§impl ProvisioningTemplateSummary
impl ProvisioningTemplateSummary
sourcepub fn template_arn(&self) -> Option<&str>
pub fn template_arn(&self) -> Option<&str>
The ARN of the provisioning template.
sourcepub fn template_name(&self) -> Option<&str>
pub fn template_name(&self) -> Option<&str>
The name of the provisioning template.
sourcepub fn description(&self) -> Option<&str>
pub fn description(&self) -> Option<&str>
The description of the provisioning template.
sourcepub fn creation_date(&self) -> Option<&DateTime>
pub fn creation_date(&self) -> Option<&DateTime>
The date when the provisioning template summary was created.
sourcepub fn last_modified_date(&self) -> Option<&DateTime>
pub fn last_modified_date(&self) -> Option<&DateTime>
The date when the provisioning template summary was last modified.
sourcepub fn enabled(&self) -> bool
pub fn enabled(&self) -> bool
True if the fleet provision template is enabled, otherwise false.
sourcepub fn type(&self) -> Option<&TemplateType>
pub fn type(&self) -> Option<&TemplateType>
The type you define in a provisioning template. You can create a template with only one type. You can't change the template type after its creation. The default value is FLEET_PROVISIONING
. For more information about provisioning template, see: Provisioning template.
source§impl ProvisioningTemplateSummary
impl ProvisioningTemplateSummary
sourcepub fn builder() -> ProvisioningTemplateSummaryBuilder
pub fn builder() -> ProvisioningTemplateSummaryBuilder
Creates a new builder-style object to manufacture ProvisioningTemplateSummary
.
Trait Implementations§
source§impl Clone for ProvisioningTemplateSummary
impl Clone for ProvisioningTemplateSummary
source§fn clone(&self) -> ProvisioningTemplateSummary
fn clone(&self) -> ProvisioningTemplateSummary
Returns a copy of the value. Read more
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moresource§impl Debug for ProvisioningTemplateSummary
impl Debug for ProvisioningTemplateSummary
source§impl PartialEq<ProvisioningTemplateSummary> for ProvisioningTemplateSummary
impl PartialEq<ProvisioningTemplateSummary> for ProvisioningTemplateSummary
source§fn eq(&self, other: &ProvisioningTemplateSummary) -> bool
fn eq(&self, other: &ProvisioningTemplateSummary) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.