interface TemplateProgressProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.CfnPropertyMixins.AWS.CloudFormation.CfnGeneratedTemplatePropsMixin.TemplateProgressProperty |
Go | github.com/aws/aws-cdk-go/awscdkcfnpropertymixins/v2/awscloudformation#CfnGeneratedTemplatePropsMixin_TemplateProgressProperty |
Java | software.amazon.awscdk.cfnpropertymixins.services.cloudformation.CfnGeneratedTemplatePropsMixin.TemplateProgressProperty |
Python | aws_cdk.cfn_property_mixins.aws_cloudformation.CfnGeneratedTemplatePropsMixin.TemplateProgressProperty |
TypeScript | @aws-cdk/cfn-property-mixins » aws_cloudformation » CfnGeneratedTemplatePropsMixin » 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/cfn-property-mixins';
const templateProgressProperty: cloudformation.CfnGeneratedTemplatePropsMixin.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