interface TemplateProgressProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.CfnGeneratedTemplate.TemplateProgressProperty |
Go | github.com/aws/aws-cdk-go/awscdk/v2#CfnGeneratedTemplate_TemplateProgressProperty |
Java | software.amazon.awscdk.CfnGeneratedTemplate.TemplateProgressProperty |
Python | aws_cdk.CfnGeneratedTemplate.TemplateProgressProperty |
TypeScript | aws-cdk-lib » 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 * as cdk from 'aws-cdk-lib';
const templateProgressProperty: cdk.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