#[non_exhaustive]pub struct GetGeneratedTemplateInput {
pub format: Option<TemplateFormat>,
pub generated_template_name: Option<String>,
}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.format: Option<TemplateFormat>The language to use to retrieve for the generated template. Supported values are:
-
JSON -
YAML
generated_template_name: Option<String>The name or Amazon Resource Name (ARN) of the generated template. The format is arn:${Partition}:cloudformation:${Region}:${Account}:generatedtemplate/${Id}. For example, arn:aws:cloudformation:us-east-1:123456789012:generatedtemplate/2e8465c1-9a80-43ea-a3a3-4f2d692fe6dc .
Implementations§
source§impl GetGeneratedTemplateInput
impl GetGeneratedTemplateInput
sourcepub fn format(&self) -> Option<&TemplateFormat>
pub fn format(&self) -> Option<&TemplateFormat>
The language to use to retrieve for the generated template. Supported values are:
-
JSON -
YAML
sourcepub fn generated_template_name(&self) -> Option<&str>
pub fn generated_template_name(&self) -> Option<&str>
The name or Amazon Resource Name (ARN) of the generated template. The format is arn:${Partition}:cloudformation:${Region}:${Account}:generatedtemplate/${Id}. For example, arn:aws:cloudformation:us-east-1:123456789012:generatedtemplate/2e8465c1-9a80-43ea-a3a3-4f2d692fe6dc .
source§impl GetGeneratedTemplateInput
impl GetGeneratedTemplateInput
sourcepub fn builder() -> GetGeneratedTemplateInputBuilder
pub fn builder() -> GetGeneratedTemplateInputBuilder
Creates a new builder-style object to manufacture GetGeneratedTemplateInput.
Trait Implementations§
source§impl Clone for GetGeneratedTemplateInput
impl Clone for GetGeneratedTemplateInput
source§fn clone(&self) -> GetGeneratedTemplateInput
fn clone(&self) -> GetGeneratedTemplateInput
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source. Read moresource§impl Debug for GetGeneratedTemplateInput
impl Debug for GetGeneratedTemplateInput
impl StructuralPartialEq for GetGeneratedTemplateInput
Auto Trait Implementations§
impl Freeze for GetGeneratedTemplateInput
impl RefUnwindSafe for GetGeneratedTemplateInput
impl Send for GetGeneratedTemplateInput
impl Sync for GetGeneratedTemplateInput
impl Unpin for GetGeneratedTemplateInput
impl UnwindSafe for GetGeneratedTemplateInput
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§unsafe fn clone_to_uninit(&self, dst: *mut T)
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