[][src]Struct rusoto_cloudformation::EstimateTemplateCostInput

pub struct EstimateTemplateCostInput {
    pub parameters: Option<Vec<Parameter>>,
    pub template_body: Option<String>,
    pub template_url: Option<String>,
}

The input for an EstimateTemplateCost action.

Fields

parameters: Option<Vec<Parameter>>

A list of Parameter structures that specify input parameters.

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 TemplateBody or TemplateURL. 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 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

impl Clone for EstimateTemplateCostInput[src]

impl Debug for EstimateTemplateCostInput[src]

impl Default for EstimateTemplateCostInput[src]

impl PartialEq<EstimateTemplateCostInput> for EstimateTemplateCostInput[src]

impl StructuralPartialEq for EstimateTemplateCostInput[src]

Auto Trait Implementations

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> From<T> for T[src]

impl<T> Instrument for T[src]

impl<T> Instrument for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> Same<T> for T

type Output = T

Should always be Self

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.