interface ErrorProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.IoTTwinMaker.Mixins.CfnEntityPropsMixin.ErrorProperty |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awsiottwinmaker/mixins#CfnEntityPropsMixin_ErrorProperty |
Java | software.amazon.awscdk.mixins.preview.services.iottwinmaker.mixins.CfnEntityPropsMixin.ErrorProperty |
Python | aws_cdk.mixins_preview.aws_iottwinmaker.mixins.CfnEntityPropsMixin.ErrorProperty |
TypeScript | @aws-cdk/mixins-preview » aws_iottwinmaker » mixins » CfnEntityPropsMixin » ErrorProperty |
The entity error.
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 errorProperty: iottwinmaker_mixins.CfnEntityPropsMixin.ErrorProperty = {
code: 'code',
message: 'message',
};
Properties
| Name | Type | Description |
|---|---|---|
| code? | string | The entity error code. |
| message? | string | The entity error message. |
code?
Type:
string
(optional)
The entity error code.
message?
Type:
string
(optional)
The entity error message.

.NET
Go
Java
Python
TypeScript