AWSLexDialogState

Objective-C

NS_ENUM(NSInteger, AWSLexDialogState) {
    AWSLexDialogStateUnknown,
    AWSLexDialogStateElicitIntent,
    AWSLexDialogStateConfirmIntent,
    AWSLexDialogStateElicitSlot,
    AWSLexDialogStateFulfilled,
    AWSLexDialogStateReadyForFulfillment,
    AWSLexDialogStateFailed,
}

Swift

enum AWSLexDialogState : Int, @unchecked Sendable

Undocumented