#[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 more
sourceimpl 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
This method tests for self and other values to be equal, and is used
by ==. Read more
sourcefn ne(&self, other: &ValidateTemplateOutput) -> bool
fn ne(&self, other: &ValidateTemplateOutput) -> bool
This method tests for !=.
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 T where
T: ?Sized,
impl<T> BorrowMut<T> for T where
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
sourceimpl<T> Instrument for T
impl<T> Instrument for T
sourcefn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
sourcefn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
sourceimpl<T> WithSubscriber for T
impl<T> WithSubscriber for T
sourcefn with_subscriber<S>(self, subscriber: S) -> WithDispatch<Self> where
S: Into<Dispatch>,
fn with_subscriber<S>(self, subscriber: S) -> WithDispatch<Self> where
S: Into<Dispatch>,
Attaches the provided Subscriber to this type, returning a
WithDispatch wrapper. Read more
sourcefn with_current_subscriber(self) -> WithDispatch<Self>
fn with_current_subscriber(self) -> WithDispatch<Self>
Attaches the current default Subscriber to this type, returning a
WithDispatch wrapper. Read more