Interface CfnGeneratedTemplatePropsMixin.TemplateProgressProperty
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnGeneratedTemplatePropsMixin.TemplateProgressProperty.Jsii$Proxy
- Enclosing class:
CfnGeneratedTemplatePropsMixin
@Stability(Stable)
public static interface CfnGeneratedTemplatePropsMixin.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.cfnpropertymixins.services.cloudformation.*;
TemplateProgressProperty templateProgressProperty = TemplateProgressProperty.builder()
.resourcesFailed(123)
.resourcesPending(123)
.resourcesProcessing(123)
.resourcesSucceeded(123)
.build();
- See Also:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forCfnGeneratedTemplatePropsMixin.TemplateProgressPropertystatic final classAn implementation forCfnGeneratedTemplatePropsMixin.TemplateProgressProperty -
Method Summary
Modifier and TypeMethodDescriptionbuilder()default NumberThe number of resources that failed the template generation.default NumberThe number of resources that are still pending the template generation.default NumberThe number of resources that are in-process for the template generation.default NumberThe number of resources that succeeded the template generation.Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getResourcesFailed
The number of resources that failed the template generation.- See Also:
-
getResourcesPending
The number of resources that are still pending the template generation.- See Also:
-
getResourcesProcessing
The number of resources that are in-process for the template generation.- See Also:
-
getResourcesSucceeded
The number of resources that succeeded the template generation.- See Also:
-
builder
-