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
Non-exhaustive structs could have additional fields added in future. Therefore, non-exhaustive structs cannot be constructed in external crates using the traditional
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) -> Option<&[String]>
pub fn environments(&self) -> Option<&[String]>
A list of environments that are supported with the managed job template.
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
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 ManagedJobTemplateSummary
impl Debug for ManagedJobTemplateSummary
source§impl PartialEq<ManagedJobTemplateSummary> for ManagedJobTemplateSummary
impl PartialEq<ManagedJobTemplateSummary> for ManagedJobTemplateSummary
source§fn eq(&self, other: &ManagedJobTemplateSummary) -> bool
fn eq(&self, other: &ManagedJobTemplateSummary) -> bool
This method tests for
self and other values to be equal, and is used
by ==.impl StructuralPartialEq for ManagedJobTemplateSummary
Auto Trait Implementations§
impl RefUnwindSafe for ManagedJobTemplateSummary
impl Send for ManagedJobTemplateSummary
impl Sync for ManagedJobTemplateSummary
impl Unpin for ManagedJobTemplateSummary
impl UnwindSafe for ManagedJobTemplateSummary
Blanket Implementations§
source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere T: ?Sized,
source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more