AWSLexPredictedIntent
Objective-C
@interface AWSLexPredictedIntent
Swift
class AWSLexPredictedIntent
An intent that Amazon Lex suggests satisfies the user’s intent. Includes the name of the intent, the confidence that Amazon Lex has that the user’s intent is satisfied, and the slots defined for the intent.
-
The name of the intent that Amazon Lex suggests satisfies the user’s intent.
Declaration
Objective-C
@property (nonatomic, strong) NSString *_Nullable intentName;
Swift
var intentName: String? { get set }
-
Indicates how confident Amazon Lex is that an intent satisfies the user’s intent.
Declaration
Objective-C
@property (nonatomic, strong) AWSLexIntentConfidence *_Nullable nluIntentConfidence;
Swift
var nluIntentConfidence: AWSLexIntentConfidence? { get set }
-
The slot and slot values associated with the predicted intent.
Declaration
Objective-C
@property (nonatomic, strong) NSDictionary<NSString *, NSString *> *_Nullable slots;
Swift
var slots: [String : String]? { get set }