#[non_exhaustive]pub struct ValidateTemplateOutput { /* private fields */ }Expand description
The output for ValidateTemplate action.
Implementations
sourceimpl ValidateTemplateOutput
impl ValidateTemplateOutput
sourcepub fn parameters(&self) -> Option<&[TemplateParameter]>
pub fn parameters(&self) -> Option<&[TemplateParameter]>
A list of TemplateParameter structures.
sourcepub fn description(&self) -> Option<&str>
pub fn description(&self) -> Option<&str>
The description found within the template.
sourcepub fn capabilities(&self) -> Option<&[Capability]>
pub fn capabilities(&self) -> Option<&[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.
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) -> Option<&[String]>
pub fn declared_transforms(&self) -> Option<&[String]>
A list of the transforms that are declared in the template.
sourceimpl ValidateTemplateOutput
impl ValidateTemplateOutput
sourcepub fn builder() -> Builder
pub fn builder() -> Builder
Creates a new builder-style object to manufacture ValidateTemplateOutput.
Trait Implementations
sourceimpl Clone for ValidateTemplateOutput
impl Clone for ValidateTemplateOutput
sourcefn clone(&self) -> ValidateTemplateOutput
fn clone(&self) -> ValidateTemplateOutput
Returns a copy of the value. Read more
1.0.0 · sourcefn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moresourceimpl Debug for ValidateTemplateOutput
impl Debug for ValidateTemplateOutput
sourceimpl PartialEq<ValidateTemplateOutput> for ValidateTemplateOutput
impl PartialEq<ValidateTemplateOutput> for ValidateTemplateOutput
sourcefn eq(&self, other: &ValidateTemplateOutput) -> bool
fn eq(&self, other: &ValidateTemplateOutput) -> bool
impl StructuralPartialEq for ValidateTemplateOutput
Auto Trait Implementations
impl RefUnwindSafe for ValidateTemplateOutput
impl Send for ValidateTemplateOutput
impl Sync for ValidateTemplateOutput
impl Unpin for ValidateTemplateOutput
impl UnwindSafe for ValidateTemplateOutput
Blanket Implementations
sourceimpl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more