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

The output for the GetTemplateSummary action.

Fields (Non-exhaustive)

This struct is marked as non-exhaustive
Non-exhaustive structs could have additional fields added in future. Therefore, non-exhaustive structs cannot be constructed in external crates using the traditional Struct { .. } syntax; cannot be matched against without a wildcard ..; and struct update syntax will not work.
parameters: Option<Vec<ParameterDeclaration>>

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

description: Option<String>

The value that's defined in the Description property of the template.

capabilities: Option<Vec<Capability>>

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

capabilities_reason: Option<String>

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

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 Amazon Web Services template format version, which identifies the capabilities of the template.

metadata: Option<String>

The value that's defined for the Metadata property of the template.

declared_transforms: Option<Vec<String>>

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

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.

Implementations

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

The value that's defined in the Description property of the template.

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

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

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.

The Amazon Web Services template format version, which identifies the capabilities of the template.

The value that's defined for the Metadata property of the template.

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

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.

Creates a new builder-style object to manufacture GetTemplateSummaryOutput

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

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.

The resulting type after obtaining ownership.

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

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