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