Interface CfnComponentType.StatusProperty

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

@Stability(Stable) public static interface CfnComponentType.StatusProperty extends software.amazon.jsii.JsiiSerializable
The component type status.

Example:

 // The code below shows an example of how to instantiate this type.
 // The values are placeholders you should change.
 import software.amazon.awscdk.services.iottwinmaker.*;
 StatusProperty statusProperty = StatusProperty.builder()
         .error(ErrorProperty.builder()
                 .code("code")
                 .message("message")
                 .build())
         .state("state")
         .build();