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();
- See Also:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forCfnComponentType.StatusPropertystatic final classAn implementation forCfnComponentType.StatusProperty -
Method Summary
Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getError
The component type error.Returns union: either
IResolvableorCfnComponentType.ErrorProperty- See Also:
-
getState
The component type status state.- See Also:
-
builder
-