interface ErrorInfoProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.PCS.Mixins.CfnComputeNodeGroupPropsMixin.ErrorInfoProperty |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awspcs/mixins#CfnComputeNodeGroupPropsMixin_ErrorInfoProperty |
Java | software.amazon.awscdk.mixins.preview.services.pcs.mixins.CfnComputeNodeGroupPropsMixin.ErrorInfoProperty |
Python | aws_cdk.mixins_preview.aws_pcs.mixins.CfnComputeNodeGroupPropsMixin.ErrorInfoProperty |
TypeScript | @aws-cdk/mixins-preview » aws_pcs » mixins » CfnComputeNodeGroupPropsMixin » ErrorInfoProperty |
An error that occurred during resource creation.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { mixins as pcs_mixins } from '@aws-cdk/mixins-preview/aws-pcs';
const errorInfoProperty: pcs_mixins.CfnComputeNodeGroupPropsMixin.ErrorInfoProperty = {
code: 'code',
message: 'message',
};
Properties
| Name | Type | Description |
|---|---|---|
| code? | string | The short-form error code. |
| message? | string | The detailed error information. |
code?
Type:
string
(optional)
The short-form error code.
message?
Type:
string
(optional)
The detailed error information.

.NET
Go
Java
Python
TypeScript