Class CfnComponentType.ErrorProperty
The component type error.
Implements
Inherited Members
Namespace: Amazon.CDK.AWS.IoTTwinMaker
Assembly: Amazon.CDK.Lib.dll
Syntax (csharp)
public class CfnComponentType.ErrorProperty : CfnComponentType.IErrorProperty
Syntax (vb)
Public Class CfnComponentType.ErrorProperty Implements CfnComponentType.IErrorProperty
Remarks
ExampleMetadata: fixture=_generated
Examples
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
using Amazon.CDK.AWS.IoTTwinMaker;
var errorProperty = new ErrorProperty {
Code = "code",
Message = "message"
};
Synopsis
Constructors
| ErrorProperty() | The component type error. |
Properties
| Code | The component type error code. |
| Message | The component type error message. |
Constructors
ErrorProperty()
The component type error.
public ErrorProperty()
Remarks
ExampleMetadata: fixture=_generated
Examples
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
using Amazon.CDK.AWS.IoTTwinMaker;
var errorProperty = new ErrorProperty {
Code = "code",
Message = "message"
};
Properties
Code
The component type error code.
public string? Code { get; set; }
Property Value
Remarks
Message
The component type error message.
public string? Message { get; set; }