#[non_exhaustive]pub struct ValidateTemplateOutput {
    pub parameters: Option<Vec<TemplateParameter>>,
    pub description: Option<String>,
    pub capabilities: Option<Vec<Capability>>,
    pub capabilities_reason: Option<String>,
    pub declared_transforms: Option<Vec<String>>,
    /* private fields */
}Expand description
The output for ValidateTemplate action.
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.parameters: Option<Vec<TemplateParameter>>A list of TemplateParameter structures.
description: Option<String>The description found within the template.
capabilities: Option<Vec<Capability>>The capabilities found within the template. If your template contains IAM resources, you must specify the CAPABILITY_IAM or CAPABILITY_NAMED_IAM value for this parameter when you use the CreateStack or UpdateStack actions with your template; otherwise, those actions return an InsufficientCapabilities error.
For more information, see Acknowledging IAM Resources in CloudFormation Templates.
capabilities_reason: Option<String>The list of resources that generated the values in the Capabilities response element.
declared_transforms: Option<Vec<String>>A list of the transforms that are declared in the template.
Implementations§
source§impl ValidateTemplateOutput
 
impl ValidateTemplateOutput
sourcepub fn parameters(&self) -> &[TemplateParameter]
 
pub fn parameters(&self) -> &[TemplateParameter]
A list of TemplateParameter structures.
If no value was sent for this field, a default will be set. If you want to determine if no value was sent, use .parameters.is_none().
sourcepub fn description(&self) -> Option<&str>
 
pub fn description(&self) -> Option<&str>
The description found within the template.
sourcepub fn capabilities(&self) -> &[Capability]
 
pub fn capabilities(&self) -> &[Capability]
The capabilities found within the template. If your template contains IAM resources, you must specify the CAPABILITY_IAM or CAPABILITY_NAMED_IAM value for this parameter when you use the CreateStack or UpdateStack actions with your template; otherwise, those actions return an InsufficientCapabilities error.
For more information, see Acknowledging IAM Resources in CloudFormation Templates.
If no value was sent for this field, a default will be set. If you want to determine if no value was sent, use .capabilities.is_none().
sourcepub fn capabilities_reason(&self) -> Option<&str>
 
pub fn capabilities_reason(&self) -> Option<&str>
The list of resources that generated the values in the Capabilities response element.
sourcepub fn declared_transforms(&self) -> &[String]
 
pub fn declared_transforms(&self) -> &[String]
A list of the transforms that are declared in the 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 .declared_transforms.is_none().
source§impl ValidateTemplateOutput
 
impl ValidateTemplateOutput
sourcepub fn builder() -> ValidateTemplateOutputBuilder
 
pub fn builder() -> ValidateTemplateOutputBuilder
Creates a new builder-style object to manufacture ValidateTemplateOutput.
Trait Implementations§
source§impl Clone for ValidateTemplateOutput
 
impl Clone for ValidateTemplateOutput
source§fn clone(&self) -> ValidateTemplateOutput
 
fn clone(&self) -> ValidateTemplateOutput
1.0.0 · source§fn clone_from(&mut self, source: &Self)
 
fn clone_from(&mut self, source: &Self)
source. Read moresource§impl Debug for ValidateTemplateOutput
 
impl Debug for ValidateTemplateOutput
source§impl PartialEq for ValidateTemplateOutput
 
impl PartialEq for ValidateTemplateOutput
source§fn eq(&self, other: &ValidateTemplateOutput) -> bool
 
fn eq(&self, other: &ValidateTemplateOutput) -> bool
self and other values to be equal, and is used
by ==.source§impl RequestId for ValidateTemplateOutput
 
impl RequestId for ValidateTemplateOutput
source§fn request_id(&self) -> Option<&str>
 
fn request_id(&self) -> Option<&str>
None if the service could not be reached.