Struct aws_sdk_cloudformation::operation::validate_template::builders::ValidateTemplateInputBuilder
source · #[non_exhaustive]pub struct ValidateTemplateInputBuilder { /* private fields */ }
Expand description
A builder for ValidateTemplateInput
.
Implementations§
source§impl ValidateTemplateInputBuilder
impl ValidateTemplateInputBuilder
sourcepub fn template_body(self, input: impl Into<String>) -> Self
pub fn template_body(self, input: impl Into<String>) -> Self
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 CloudFormation User Guide.
Conditional: You must pass TemplateURL
or TemplateBody
. If both are passed, only TemplateBody
is used.
sourcepub fn set_template_body(self, input: Option<String>) -> Self
pub fn set_template_body(self, input: Option<String>) -> Self
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 CloudFormation User Guide.
Conditional: You must pass TemplateURL
or TemplateBody
. If both are passed, only TemplateBody
is used.
sourcepub fn template_url(self, input: impl Into<String>) -> Self
pub fn template_url(self, input: impl Into<String>) -> Self
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 or a Systems Manager document. For more information, go to Template Anatomy in the CloudFormation User Guide.
Conditional: You must pass TemplateURL
or TemplateBody
. If both are passed, only TemplateBody
is used.
sourcepub fn set_template_url(self, input: Option<String>) -> Self
pub fn set_template_url(self, input: Option<String>) -> Self
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 or a Systems Manager document. For more information, go to Template Anatomy in the CloudFormation User Guide.
Conditional: You must pass TemplateURL
or TemplateBody
. If both are passed, only TemplateBody
is used.
sourcepub fn build(self) -> Result<ValidateTemplateInput, BuildError>
pub fn build(self) -> Result<ValidateTemplateInput, BuildError>
Consumes the builder and constructs a ValidateTemplateInput
.
Trait Implementations§
source§impl Clone for ValidateTemplateInputBuilder
impl Clone for ValidateTemplateInputBuilder
source§fn clone(&self) -> ValidateTemplateInputBuilder
fn clone(&self) -> ValidateTemplateInputBuilder
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moresource§impl Debug for ValidateTemplateInputBuilder
impl Debug for ValidateTemplateInputBuilder
source§impl Default for ValidateTemplateInputBuilder
impl Default for ValidateTemplateInputBuilder
source§fn default() -> ValidateTemplateInputBuilder
fn default() -> ValidateTemplateInputBuilder
source§impl PartialEq<ValidateTemplateInputBuilder> for ValidateTemplateInputBuilder
impl PartialEq<ValidateTemplateInputBuilder> for ValidateTemplateInputBuilder
source§fn eq(&self, other: &ValidateTemplateInputBuilder) -> bool
fn eq(&self, other: &ValidateTemplateInputBuilder) -> bool
self
and other
values to be equal, and is used
by ==
.