pub struct ValidateTemplateInput {
pub template_body: Option<String>,
pub template_url: Option<String>,
}Expand description
The input for ValidateTemplate action.
Fields§
§template_body: Option<String>Structure containing the template body with a minimum length of 1 byte and a maximum length of 51,200 bytes. For more information, go to Template Anatomy in the AWS CloudFormation User Guide.
Conditional: You must pass TemplateURL or TemplateBody. If both are passed, only TemplateBody is used.
template_url: Option<String>Location of file containing the template body. The URL must point to a template (max size: 460,800 bytes) that is located in an Amazon S3 bucket. For more information, go to Template Anatomy in the AWS CloudFormation User Guide.
Conditional: You must pass TemplateURL or TemplateBody. If both are passed, only TemplateBody is used.
Trait Implementations§
Source§impl Clone for ValidateTemplateInput
impl Clone for ValidateTemplateInput
Source§fn clone(&self) -> ValidateTemplateInput
fn clone(&self) -> ValidateTemplateInput
Returns a duplicate 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 ValidateTemplateInput
impl Debug for ValidateTemplateInput
Source§impl Default for ValidateTemplateInput
impl Default for ValidateTemplateInput
Source§fn default() -> ValidateTemplateInput
fn default() -> ValidateTemplateInput
Returns the “default value” for a type. Read more
Source§impl PartialEq for ValidateTemplateInput
impl PartialEq for ValidateTemplateInput
impl StructuralPartialEq for ValidateTemplateInput
Auto Trait Implementations§
impl Freeze for ValidateTemplateInput
impl RefUnwindSafe for ValidateTemplateInput
impl Send for ValidateTemplateInput
impl Sync for ValidateTemplateInput
impl Unpin for ValidateTemplateInput
impl UnwindSafe for ValidateTemplateInput
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