interface StatusProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.IoTTwinMaker.Mixins.CfnComponentTypePropsMixin.StatusProperty |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awsiottwinmaker/mixins#CfnComponentTypePropsMixin_StatusProperty |
Java | software.amazon.awscdk.mixins.preview.services.iottwinmaker.mixins.CfnComponentTypePropsMixin.StatusProperty |
Python | aws_cdk.mixins_preview.aws_iottwinmaker.mixins.CfnComponentTypePropsMixin.StatusProperty |
TypeScript | @aws-cdk/mixins-preview » aws_iottwinmaker » mixins » CfnComponentTypePropsMixin » StatusProperty |
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 { mixins as iottwinmaker_mixins } from '@aws-cdk/mixins-preview/aws-iottwinmaker';
const statusProperty: iottwinmaker_mixins.CfnComponentTypePropsMixin.StatusProperty = {
error: {
code: 'code',
message: 'message',
},
state: 'state',
};
Properties
| Name | Type | Description |
|---|---|---|
| error? | IResolvable | Error | The component type error. |
| state? | string | The component type status state. |
error?
Type:
IResolvable | Error
(optional)
The component type error.
state?
Type:
string
(optional)
The component type status state.

.NET
Go
Java
Python
TypeScript