Show / Hide Table of Contents

Class VoiceIdStartSessionAction.ErrorInfo

(experimental) Type definition for ErrorInfo.

Inheritance
object
VoiceIdStartSessionAction.ErrorInfo
Implements
VoiceIdStartSessionAction.IErrorInfo
Inherited Members
object.GetType()
object.MemberwiseClone()
object.ToString()
object.Equals(object)
object.Equals(object, object)
object.ReferenceEquals(object, object)
object.GetHashCode()
Namespace: Amazon.CDK.Mixins.Preview.AWS.VoiceID.Events
Assembly: Amazon.CDK.Mixins.Preview.dll
Syntax (csharp)
public class VoiceIdStartSessionAction.ErrorInfo : VoiceIdStartSessionAction.IErrorInfo
Syntax (vb)
Public Class VoiceIdStartSessionAction.ErrorInfo Implements VoiceIdStartSessionAction.IErrorInfo
Remarks

Stability: Experimental

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.Mixins.Preview.AWS.VoiceID.Events;

             var errorInfo = new ErrorInfo {
                 ErrorCode = new [] { "errorCode" },
                 ErrorMessage = new [] { "errorMessage" },
                 ErrorType = new [] { "errorType" }
             };

Synopsis

Constructors

ErrorInfo()

(experimental) Type definition for ErrorInfo.

Properties

ErrorCode

(experimental) errorCode property.

ErrorMessage

(experimental) errorMessage property.

ErrorType

(experimental) errorType property.

Constructors

ErrorInfo()

(experimental) Type definition for ErrorInfo.

public ErrorInfo()
Remarks

Stability: Experimental

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.Mixins.Preview.AWS.VoiceID.Events;

             var errorInfo = new ErrorInfo {
                 ErrorCode = new [] { "errorCode" },
                 ErrorMessage = new [] { "errorMessage" },
                 ErrorType = new [] { "errorType" }
             };

Properties

ErrorCode

(experimental) errorCode property.

public string[]? ErrorCode { get; set; }
Property Value

string[]

Remarks

Specify an array of string values to match this event if the actual value of errorCode is one of the values in the array. Use one of the constructors on the aws_events.Match for more advanced matching options.

Default: - Do not filter on this field

Stability: Experimental

ErrorMessage

(experimental) errorMessage property.

public string[]? ErrorMessage { get; set; }
Property Value

string[]

Remarks

Specify an array of string values to match this event if the actual value of errorMessage is one of the values in the array. Use one of the constructors on the aws_events.Match for more advanced matching options.

Default: - Do not filter on this field

Stability: Experimental

ErrorType

(experimental) errorType property.

public string[]? ErrorType { get; set; }
Property Value

string[]

Remarks

Specify an array of string values to match this event if the actual value of errorType is one of the values in the array. Use one of the constructors on the aws_events.Match for more advanced matching options.

Default: - Do not filter on this field

Stability: Experimental

Implements

VoiceIdStartSessionAction.IErrorInfo
Back to top Generated by DocFX