logo
pub struct GetTemplateSummaryOutput {
    pub capabilities: Option<Vec<String>>,
    pub capabilities_reason: Option<String>,
    pub declared_transforms: Option<Vec<String>>,
    pub description: Option<String>,
    pub metadata: Option<String>,
    pub parameters: Option<Vec<ParameterDeclaration>>,
    pub resource_identifier_summaries: Option<Vec<ResourceIdentifierSummary>>,
    pub resource_types: Option<Vec<String>>,
    pub version: Option<String>,
}
Expand description

The output for the GetTemplateSummary action.

Fields

capabilities: Option<Vec<String>>

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 AWS CloudFormation Templates.

capabilities_reason: Option<String>

The list of resources that generated the values in the Capabilities response element.

declared_transforms: Option<Vec<String>>

A list of the transforms that are declared in the template.

description: Option<String>

The value that is defined in the Description property of the template.

metadata: Option<String>

The value that is defined for the Metadata property of the template.

parameters: Option<Vec<ParameterDeclaration>>

A list of parameter declarations that describe various properties for each parameter.

resource_identifier_summaries: Option<Vec<ResourceIdentifierSummary>>

A list of resource identifier summaries that describe the target resources of an import operation and the properties you can provide during the import to identify the target resources. For example, BucketName is a possible identifier property for an AWS::S3::Bucket resource.

resource_types: Option<Vec<String>>

A list of all the template resource types that are defined in the template, such as AWS::EC2::Instance, AWS::Dynamo::Table, and Custom::MyCustomInstance.

version: Option<String>

The AWS template format version, which identifies the capabilities of the template.

Trait Implementations

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

Formats the value using the given formatter. Read more

Returns the “default value” for a type. Read more

This method tests for self and other values to be equal, and is used by ==. Read more

This method tests for !=.

Auto Trait Implementations

Blanket Implementations

Gets the TypeId of self. Read more

Immutably borrows from an owned value. Read more

Mutably borrows from an owned value. Read more

Returns the argument unchanged.

Instruments this type with the provided Span, returning an Instrumented wrapper. Read more

Instruments this type with the current Span, returning an Instrumented wrapper. Read more

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

Should always be Self

The resulting type after obtaining ownership.

Creates owned data from borrowed data, usually by cloning. Read more

🔬 This is a nightly-only experimental API. (toowned_clone_into)

Uses borrowed data to replace owned data, usually by cloning. Read more

The type returned in the event of a conversion error.

Performs the conversion.

The type returned in the event of a conversion error.

Performs the conversion.

Attaches the provided Subscriber to this type, returning a WithDispatch wrapper. Read more

Attaches the current default Subscriber to this type, returning a WithDispatch wrapper. Read more