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