Show / Hide Table of Contents

Class CfnComponentType.ErrorProperty

The component type error.

Inheritance
object
CfnComponentType.ErrorProperty
Implements
CfnComponentType.IErrorProperty
Inherited Members
object.GetType()
object.MemberwiseClone()
object.ToString()
object.Equals(object)
object.Equals(object, object)
object.ReferenceEquals(object, object)
object.GetHashCode()
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

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iottwinmaker-componenttype-error.html

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

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iottwinmaker-componenttype-error.html

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

string

Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iottwinmaker-componenttype-error.html#cfn-iottwinmaker-componenttype-error-code

Message

The component type error message.

public string? Message { get; set; }
Property Value

string

Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iottwinmaker-componenttype-error.html#cfn-iottwinmaker-componenttype-error-message

Implements

CfnComponentType.IErrorProperty
Back to top Generated by DocFX