interface TemplateProgressProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.CloudFormation.CfnGeneratedTemplate.TemplateProgressProperty |
Go | github.com/aws/aws-cdk-go/awscdk/v2/awscloudformation#CfnGeneratedTemplate_TemplateProgressProperty |
Java | software.amazon.awscdk.services.cloudformation.CfnGeneratedTemplate.TemplateProgressProperty |
Python | aws_cdk.aws_cloudformation.CfnGeneratedTemplate.TemplateProgressProperty |
TypeScript | aws-cdk-lib » aws_cloudformation » CfnGeneratedTemplate » TemplateProgressProperty |
A summary of the progress of the template generation.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { aws_cloudformation as cloudformation } from 'aws-cdk-lib';
const templateProgressProperty: cloudformation.CfnGeneratedTemplate.TemplateProgressProperty = {
resourcesFailed: 123,
resourcesPending: 123,
resourcesProcessing: 123,
resourcesSucceeded: 123,
};
Properties
| Name | Type | Description |
|---|---|---|
| resources | number | The number of resources that failed the template generation. |
| resources | number | The number of resources that are still pending the template generation. |
| resources | number | The number of resources that are in-process for the template generation. |
| resources | number | The number of resources that succeeded the template generation. |
resourcesFailed?
Type:
number
(optional)
The number of resources that failed the template generation.
resourcesPending?
Type:
number
(optional)
The number of resources that are still pending the template generation.
resourcesProcessing?
Type:
number
(optional)
The number of resources that are in-process for the template generation.
resourcesSucceeded?
Type:
number
(optional)
The number of resources that succeeded the template generation.

.NET
Go
Java
Python
TypeScript