Interface CfnEntity.StatusProperty
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnEntity.StatusProperty.Jsii$Proxy
- Enclosing class:
CfnEntity
@Stability(Stable)
public static interface CfnEntity.StatusProperty
extends software.amazon.jsii.JsiiSerializable
The current status of the entity.
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.*; Object error; StatusProperty statusProperty = StatusProperty.builder() .error(error) .state("state") .build();
- See Also:
-
Nested Class Summary
Modifier and TypeInterfaceDescriptionstatic final class
A builder forCfnEntity.StatusProperty
static final class
An implementation forCfnEntity.StatusProperty
-
Method Summary
Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getError
The error message.- See Also:
-
getState
The current state of the entity, component, component type, or workspace.Valid Values:
CREATING | UPDATING | DELETING | ACTIVE | ERROR
- See Also:
-
builder
- Returns:
- a
CfnEntity.StatusProperty.Builder
ofCfnEntity.StatusProperty
-