AWSLexGetSessionRequest

Objective-C

@interface AWSLexGetSessionRequest

Swift

class AWSLexGetSessionRequest
  • The alias in use for the bot that contains the session data.

    Declaration

    Objective-C

    @property (nonatomic, strong) NSString *_Nullable botAlias;

    Swift

    var botAlias: String? { get set }
  • The name of the bot that contains the session data.

    Declaration

    Objective-C

    @property (nonatomic, strong) NSString *_Nullable botName;

    Swift

    var botName: String? { get set }
  • A string used to filter the intents returned in the recentIntentSummaryView structure.

    When you specify a filter, only intents with their checkpointLabel field set to that string are returned.

    Declaration

    Objective-C

    @property (nonatomic, strong) NSString *_Nullable checkpointLabelFilter;

    Swift

    var checkpointLabelFilter: String? { get set }
  • The ID of the client application user. Amazon Lex uses this to identify a user’s conversation with your bot.

    Declaration

    Objective-C

    @property (nonatomic, strong) NSString *_Nullable userId;

    Swift

    var userId: String? { get set }