interface StatusProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.CfnPropertyMixins.AWS.IoTTwinMaker.CfnEntityPropsMixin.StatusProperty |
Go | github.com/aws/aws-cdk-go/awscdkcfnpropertymixins/v2/awsiottwinmaker#CfnEntityPropsMixin_StatusProperty |
Java | software.amazon.awscdk.cfnpropertymixins.services.iottwinmaker.CfnEntityPropsMixin.StatusProperty |
Python | aws_cdk.cfn_property_mixins.aws_iottwinmaker.CfnEntityPropsMixin.StatusProperty |
TypeScript | @aws-cdk/cfn-property-mixins » aws_iottwinmaker » 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 { aws_iottwinmaker as iottwinmaker } from '@aws-cdk/cfn-property-mixins';
declare const error: any;
const statusProperty: iottwinmaker.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