#[non_exhaustive]pub struct EstimateTemplateCostInput { /* private fields */ }Expand description
The input for an EstimateTemplateCost action.
Implementations
sourceimpl EstimateTemplateCostInput
impl EstimateTemplateCostInput
sourcepub async fn make_operation(
&self,
_config: &Config
) -> Result<Operation<EstimateTemplateCost, AwsResponseRetryClassifier>, BuildError>
pub async fn make_operation(
&self,
_config: &Config
) -> Result<Operation<EstimateTemplateCost, AwsResponseRetryClassifier>, BuildError>
Consumes the builder and constructs an Operation<EstimateTemplateCost>
sourcepub fn builder() -> Builder
pub fn builder() -> Builder
Creates a new builder-style object to manufacture EstimateTemplateCostInput.
sourceimpl EstimateTemplateCostInput
impl EstimateTemplateCostInput
sourcepub fn template_body(&self) -> Option<&str>
pub fn template_body(&self) -> Option<&str>
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 TemplateBody or TemplateURL. If both are passed, only TemplateBody is used.
sourcepub fn template_url(&self) -> Option<&str>
pub fn template_url(&self) -> Option<&str>
Location of file containing the template body. The URL must point to a template that's 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 parameters(&self) -> Option<&[Parameter]>
pub fn parameters(&self) -> Option<&[Parameter]>
A list of Parameter structures that specify input parameters.
Trait Implementations
sourceimpl Clone for EstimateTemplateCostInput
impl Clone for EstimateTemplateCostInput
sourcefn clone(&self) -> EstimateTemplateCostInput
fn clone(&self) -> EstimateTemplateCostInput
1.0.0 · sourcefn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source. Read more