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

.NET
Go
Java
Python
TypeScript