interface StatusProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.IoTTwinMaker.Mixins.CfnEntityPropsMixin.StatusProperty |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awsiottwinmaker/mixins#CfnEntityPropsMixin_StatusProperty |
Java | software.amazon.awscdk.mixins.preview.services.iottwinmaker.mixins.CfnEntityPropsMixin.StatusProperty |
Python | aws_cdk.mixins_preview.aws_iottwinmaker.mixins.CfnEntityPropsMixin.StatusProperty |
TypeScript | @aws-cdk/mixins-preview » aws_iottwinmaker » mixins » CfnEntityPropsMixin » StatusProperty |
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 { mixins as iottwinmaker_mixins } from '@aws-cdk/mixins-preview/aws-iottwinmaker';
declare const error: any;
const statusProperty: iottwinmaker_mixins.CfnEntityPropsMixin.StatusProperty = {
error: error,
state: 'state',
};
Properties
| Name | Type | Description |
|---|---|---|
| error? | any | The error message. |
| state? | string | The current state of the entity, component, component type, or workspace. |
error?
Type:
any
(optional)
The error message.
state?
Type:
string
(optional)
The current state of the entity, component, component type, or workspace.
Valid Values: CREATING | UPDATING | DELETING | ACTIVE | ERROR

.NET
Go
Java
Python
TypeScript