#[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
source§impl PartialEq for GetGeneratedTemplateInput
impl PartialEq for GetGeneratedTemplateInput
source§fn eq(&self, other: &GetGeneratedTemplateInput) -> bool
fn eq(&self, other: &GetGeneratedTemplateInput) -> bool
self and other values to be equal, and is used
by ==.