Struct aws_sdk_iot::types::ManagedJobTemplateSummary
source · #[non_exhaustive]pub struct ManagedJobTemplateSummary {
pub template_arn: Option<String>,
pub template_name: Option<String>,
pub description: Option<String>,
pub environments: Option<Vec<String>>,
pub template_version: Option<String>,
}
Expand description
An object that contains information about the managed 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 Amazon Resource Name (ARN) for a managed template.
template_name: Option<String>
The unique Name for a managed template.
description: Option<String>
The description for a managed template.
environments: Option<Vec<String>>
A list of environments that are supported with the managed job template.
template_version: Option<String>
The version for a managed template.
Implementations§
source§impl ManagedJobTemplateSummary
impl ManagedJobTemplateSummary
sourcepub fn template_arn(&self) -> Option<&str>
pub fn template_arn(&self) -> Option<&str>
The Amazon Resource Name (ARN) for a managed template.
sourcepub fn template_name(&self) -> Option<&str>
pub fn template_name(&self) -> Option<&str>
The unique Name for a managed template.
sourcepub fn description(&self) -> Option<&str>
pub fn description(&self) -> Option<&str>
The description for a managed template.
sourcepub fn environments(&self) -> &[String]
pub fn environments(&self) -> &[String]
A list of environments that are supported with the managed job template.
If no value was sent for this field, a default will be set. If you want to determine if no value was sent, use .environments.is_none()
.
sourcepub fn template_version(&self) -> Option<&str>
pub fn template_version(&self) -> Option<&str>
The version for a managed template.
source§impl ManagedJobTemplateSummary
impl ManagedJobTemplateSummary
sourcepub fn builder() -> ManagedJobTemplateSummaryBuilder
pub fn builder() -> ManagedJobTemplateSummaryBuilder
Creates a new builder-style object to manufacture ManagedJobTemplateSummary
.
Trait Implementations§
source§impl Clone for ManagedJobTemplateSummary
impl Clone for ManagedJobTemplateSummary
source§fn clone(&self) -> ManagedJobTemplateSummary
fn clone(&self) -> ManagedJobTemplateSummary
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moresource§impl Debug for ManagedJobTemplateSummary
impl Debug for ManagedJobTemplateSummary
source§impl PartialEq for ManagedJobTemplateSummary
impl PartialEq for ManagedJobTemplateSummary
source§fn eq(&self, other: &ManagedJobTemplateSummary) -> bool
fn eq(&self, other: &ManagedJobTemplateSummary) -> bool
self
and other
values to be equal, and is used
by ==
.