Interface CfnGeneratedTemplate.TemplateProgressProperty

All Superinterfaces:
software.amazon.jsii.JsiiSerializable
All Known Implementing Classes:
CfnGeneratedTemplate.TemplateProgressProperty.Jsii$Proxy
Enclosing class:
CfnGeneratedTemplate

@Stability(Stable) public static interface CfnGeneratedTemplate.TemplateProgressProperty extends software.amazon.jsii.JsiiSerializable
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 software.amazon.awscdk.*;
 TemplateProgressProperty templateProgressProperty = TemplateProgressProperty.builder()
         .resourcesFailed(123)
         .resourcesPending(123)
         .resourcesProcessing(123)
         .resourcesSucceeded(123)
         .build();
 

See Also: