AWSLexPutSessionResponse
Objective-C
@interface AWSLexPutSessionResponse
Swift
class AWSLexPutSessionResponse
-
A list of active contexts for the session.
Declaration
Objective-C
@property (nonatomic, strong) NSString *_Nullable activeContexts;
Swift
var activeContexts: String? { get set }
-
The audio version of the message to convey to the user.
Declaration
Objective-C
@property (nonatomic, strong) NSData *_Nullable audioStream;
Swift
var audioStream: Data? { get set }
-
Content type as specified in the
Accept
HTTP header in the request.Declaration
Objective-C
@property (nonatomic, strong) NSString *_Nullable contentType;
Swift
var contentType: String? { get set }
-
ConfirmIntent
- Amazon Lex is expecting a “yes” or “no” response to confirm the intent before fulfilling an intent.ElicitIntent
- Amazon Lex wants to elicit the user’s intent.ElicitSlot
- Amazon Lex is expecting the value of a slot for the current intent.Failed
- Conveys that the conversation with the user has failed. This can happen for various reasons, including the user does not provide an appropriate response to prompts from the service, or if the Lambda function fails to fulfill the intent.Fulfilled
- Conveys that the Lambda function has sucessfully fulfilled the intent.ReadyForFulfillment
- Conveys that the client has to fulfill the intent.
Declaration
Objective-C
@property (nonatomic) AWSLexDialogState dialogState;
Swift
var dialogState: AWSLexDialogState { get set }
-
The next message that should be presented to the user.
The
encodedMessage
field is base-64 encoded. You must decode the field before you can use the value.Declaration
Objective-C
@property (nonatomic, strong) NSString *_Nullable encodedMessage;
Swift
var encodedMessage: String? { get set }
-
The name of the current intent.
Declaration
Objective-C
@property (nonatomic, strong) NSString *_Nullable intentName;
Swift
var intentName: String? { get set }
-
The next message that should be presented to the user.
You can only use this field in the de-DE, en-AU, en-GB, en-US, es-419, es-ES, es-US, fr-CA, fr-FR, and it-IT locales. In all other locales, the
message
field is null. You should use theencodedMessage
field instead.Declaration
Objective-C
@property (nonatomic, strong) NSString *_Nullable message;
Swift
var message: String? { get set }
-
The format of the response message. One of the following values:
PlainText
- The message contains plain UTF-8 text.CustomPayload
- The message is a custom format for the client.SSML
- The message contains text formatted for voice output.Composite
- The message contains an escaped JSON object containing one or more messages from the groups that messages were assigned to when the intent was created.
Declaration
Objective-C
@property (nonatomic) AWSLexMessageFormatType messageFormat;
Swift
var messageFormat: AWSLexMessageFormatType { get set }
-
Map of key/value pairs representing session-specific context information.
Declaration
Objective-C
@property (nonatomic, strong) NSString *_Nullable sessionAttributes;
Swift
var sessionAttributes: String? { get set }
-
A unique identifier for the session.
Declaration
Objective-C
@property (nonatomic, strong) NSString *_Nullable sessionId;
Swift
var sessionId: String? { get set }
-
If the
dialogState
isElicitSlot
, returns the name of the slot for which Amazon Lex is eliciting a value.Declaration
Objective-C
@property (nonatomic, strong) NSString *_Nullable slotToElicit;
Swift
var slotToElicit: String? { get set }
-
Map of zero or more intent slots Amazon Lex detected from the user input during the conversation.
Amazon Lex creates a resolution list containing likely values for a slot. The value that it returns is determined by the
valueSelectionStrategy
selected when the slot type was created or updated. IfvalueSelectionStrategy
is set toORIGINAL_VALUE
, the value provided by the user is returned, if the user value is similar to the slot values. IfvalueSelectionStrategy
is set toTOP_RESOLUTION
Amazon Lex returns the first value in the resolution list or, if there is no resolution list, null. If you don’t specify avalueSelectionStrategy
the default isORIGINAL_VALUE
.Declaration
Objective-C
@property (nonatomic, strong) NSString *_Nullable slots;
Swift
var slots: String? { get set }