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
impl StructuralPartialEq for ManagedJobTemplateSummary
Auto Trait Implementations§
impl Freeze for ManagedJobTemplateSummary
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
source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
source§default unsafe fn clone_to_uninit(&self, dst: *mut T)
default unsafe fn clone_to_uninit(&self, dst: *mut T)
clone_to_uninit
)source§impl<T> Instrument for T
impl<T> Instrument for T
source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
source§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
source§impl<T> IntoEither for T
impl<T> IntoEither for T
source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
self
into a Left
variant of Either<Self, Self>
if into_left
is true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read moresource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
self
into a Left
variant of Either<Self, Self>
if into_left(&self)
returns true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read more