#[non_exhaustive]pub struct ValidateTemplateOutput { /* private fields */ }
Expand description
The output for ValidateTemplate
action.
Implementations§
source§impl 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.
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
Returns a copy of the value. Read more
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moresource§impl Debug for ValidateTemplateOutput
impl Debug for ValidateTemplateOutput
source§impl PartialEq<ValidateTemplateOutput> for ValidateTemplateOutput
impl PartialEq<ValidateTemplateOutput> for ValidateTemplateOutput
source§fn 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 ==
.source§impl RequestId for ValidateTemplateOutput
impl RequestId for ValidateTemplateOutput
source§fn request_id(&self) -> Option<&str>
fn request_id(&self) -> Option<&str>
Returns the request ID, or
None
if the service could not be reached.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§
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
Mutably borrows from an owned value. Read more