Struct aws_sdk_iot::types::ProvisioningTemplateSummary
source · #[non_exhaustive]pub struct ProvisioningTemplateSummary {
pub template_arn: Option<String>,
pub template_name: Option<String>,
pub description: Option<String>,
pub creation_date: Option<DateTime>,
pub last_modified_date: Option<DateTime>,
pub enabled: bool,
pub type: Option<TemplateType>,
}
Expand description
A summary of information about a provisioning template.
Fields (Non-exhaustive)§
This struct is marked as non-exhaustive
Struct { .. }
syntax; cannot be matched against without a wildcard ..
; and struct update syntax will not work.template_arn: Option<String>
The ARN of the provisioning template.
template_name: Option<String>
The name of the provisioning template.
description: Option<String>
The description of the provisioning template.
creation_date: Option<DateTime>
The date when the provisioning template summary was created.
last_modified_date: Option<DateTime>
The date when the provisioning template summary was last modified.
enabled: bool
True if the fleet provision template is enabled, otherwise false.
type: 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.
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
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moresource§impl Debug for ProvisioningTemplateSummary
impl Debug for ProvisioningTemplateSummary
source§impl PartialEq for ProvisioningTemplateSummary
impl PartialEq for ProvisioningTemplateSummary
source§fn eq(&self, other: &ProvisioningTemplateSummary) -> bool
fn eq(&self, other: &ProvisioningTemplateSummary) -> bool
self
and other
values to be equal, and is used
by ==
.