PNG  IHDR;IDATxܻn0K )(pA 7LeG{ §㻢|ذaÆ 6lذaÆ 6lذaÆ 6lom$^yذag5bÆ 6lذaÆ 6lذa{ 6lذaÆ `}HFkm,mӪôô! x|'ܢ˟;E:9&ᶒ}{v]n&6 h_tڠ͵-ҫZ;Z$.Pkž)!o>}leQfJTu іچ\X=8Rن4`Vwl>nG^is"ms$ui?wbs[m6K4O.4%/bC%t Mז -lG6mrz2s%9s@-k9=)kB5\+͂Zsٲ Rn~GRC wIcIn7jJhۛNCS|j08yiHKֶۛkɈ+;SzL/F*\Ԕ#"5m2[S=gnaPeғL lذaÆ 6l^ḵaÆ 6lذaÆ 6lذa; _ذaÆ 6lذaÆ 6lذaÆ RIENDB` package Paws::LexRuntime::PostTextResponse; use Moose; has ActiveContexts => (is => 'ro', isa => 'ArrayRef[Paws::LexRuntime::ActiveContext]', traits => ['NameInRequest'], request_name => 'activeContexts'); has AlternativeIntents => (is => 'ro', isa => 'ArrayRef[Paws::LexRuntime::PredictedIntent]', traits => ['NameInRequest'], request_name => 'alternativeIntents'); has BotVersion => (is => 'ro', isa => 'Str', traits => ['NameInRequest'], request_name => 'botVersion'); has DialogState => (is => 'ro', isa => 'Str', traits => ['NameInRequest'], request_name => 'dialogState'); has IntentName => (is => 'ro', isa => 'Str', traits => ['NameInRequest'], request_name => 'intentName'); has Message => (is => 'ro', isa => 'Str', traits => ['NameInRequest'], request_name => 'message'); has MessageFormat => (is => 'ro', isa => 'Str', traits => ['NameInRequest'], request_name => 'messageFormat'); has NluIntentConfidence => (is => 'ro', isa => 'Paws::LexRuntime::IntentConfidence', traits => ['NameInRequest'], request_name => 'nluIntentConfidence'); has ResponseCard => (is => 'ro', isa => 'Paws::LexRuntime::ResponseCard', traits => ['NameInRequest'], request_name => 'responseCard'); has SentimentResponse => (is => 'ro', isa => 'Paws::LexRuntime::SentimentResponse', traits => ['NameInRequest'], request_name => 'sentimentResponse'); has SessionAttributes => (is => 'ro', isa => 'Paws::LexRuntime::StringMap', traits => ['NameInRequest'], request_name => 'sessionAttributes'); has SessionId => (is => 'ro', isa => 'Str', traits => ['NameInRequest'], request_name => 'sessionId'); has Slots => (is => 'ro', isa => 'Paws::LexRuntime::StringMap', traits => ['NameInRequest'], request_name => 'slots'); has SlotToElicit => (is => 'ro', isa => 'Str', traits => ['NameInRequest'], request_name => 'slotToElicit'); has _request_id => (is => 'ro', isa => 'Str'); 1; ### main pod documentation begin ### =head1 NAME Paws::LexRuntime::PostTextResponse =head1 ATTRIBUTES =head2 ActiveContexts => ArrayRef[L] A list of active contexts for the session. A context can be set when an intent is fulfilled or by calling the C, C, or C operation. You can use a context to control the intents that can follow up an intent, or to modify the operation of your application. =head2 AlternativeIntents => ArrayRef[L] One to four alternative intents that may be applicable to the user's intent. Each alternative includes a score that indicates how confident Amazon Lex is that the intent matches the user's intent. The intents are sorted by the confidence score. =head2 BotVersion => Str The version of the bot that responded to the conversation. You can use this information to help determine if one version of a bot is performing better than another version. =head2 DialogState => Str Identifies the current state of the user interaction. Amazon Lex returns one of the following values as C. The client can optionally use this information to customize the user interface. =over =item * C - Amazon Lex wants to elicit user intent. For example, a user might utter an intent ("I want to order a pizza"). If Amazon Lex cannot infer the user intent from this utterance, it will return this dialogState. =item * C - Amazon Lex is expecting a "yes" or "no" response. For example, Amazon Lex wants user confirmation before fulfilling an intent. Instead of a simple "yes" or "no," a user might respond with additional information. For example, "yes, but make it thick crust pizza" or "no, I want to order a drink". Amazon Lex can process such additional information (in these examples, update the crust type slot value, or change intent from OrderPizza to OrderDrink). =item * C - Amazon Lex is expecting a slot value for the current intent. For example, suppose that in the response Amazon Lex sends this message: "What size pizza would you like?". A user might reply with the slot value (e.g., "medium"). The user might also provide additional information in the response (e.g., "medium thick crust pizza"). Amazon Lex can process such additional information appropriately. =item * C - Conveys that the Lambda function configured for the intent has successfully fulfilled the intent. =item * C - Conveys that the client has to fulfill the intent. =item * C - Conveys that the conversation with the user failed. This can happen for various reasons including that the user did not provide an appropriate response to prompts from the service (you can configure how many times Amazon Lex can prompt a user for specific information), or the Lambda function failed to fulfill the intent. =back Valid values are: C<"ElicitIntent">, C<"ConfirmIntent">, C<"ElicitSlot">, C<"Fulfilled">, C<"ReadyForFulfillment">, C<"Failed"> =head2 IntentName => Str The current user intent that Amazon Lex is aware of. =head2 Message => Str The message to convey to the user. The message can come from the bot's configuration or from a Lambda function. If the intent is not configured with a Lambda function, or if the Lambda function returned C as the C its response, Amazon Lex decides on the next course of action and selects an appropriate message from the bot's configuration based on the current interaction context. For example, if Amazon Lex isn't able to understand user input, it uses a clarification prompt message. When you create an intent you can assign messages to groups. When messages are assigned to groups Amazon Lex returns one message from each group in the response. The message field is an escaped JSON string containing the messages. For more information about the structure of the JSON string returned, see msg-prompts-formats. If the Lambda function returns a message, Amazon Lex passes it to the client in its response. =head2 MessageFormat => Str The format of the response message. One of the following values: =over =item * C - The message contains plain UTF-8 text. =item * C<CustomPayload> - The message is a custom format defined by the Lambda function. =item * C<SSML> - The message contains text formatted for voice output. =item * C<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. =back Valid values are: C<"PlainText">, C<"CustomPayload">, C<"SSML">, C<"Composite"> =head2 NluIntentConfidence => L<Paws::LexRuntime::IntentConfidence> Provides a score that indicates how confident Amazon Lex is that the returned intent is the one that matches the user's intent. The score is between 0.0 and 1.0. For more information, see Confidence Scores (https://docs.aws.amazon.com/lex/latest/dg/confidence-scores.html). The score is a relative score, not an absolute score. The score may change based on improvements to Amazon Lex. =head2 ResponseCard => L<Paws::LexRuntime::ResponseCard> Represents the options that the user has to respond to the current prompt. Response Card can come from the bot configuration (in the Amazon Lex console, choose the settings button next to a slot) or from a code hook (Lambda function). =head2 SentimentResponse => L<Paws::LexRuntime::SentimentResponse> The sentiment expressed in and utterance. When the bot is configured to send utterances to Amazon Comprehend for sentiment analysis, this field contains the result of the analysis. =head2 SessionAttributes => L<Paws::LexRuntime::StringMap> A map of key-value pairs representing the session-specific context information. =head2 SessionId => Str A unique identifier for the session. =head2 Slots => L<Paws::LexRuntime::StringMap> The intent slots that Amazon Lex detected from the user input in the conversation. Amazon Lex creates a resolution list containing likely values for a slot. The value that it returns is determined by the C<valueSelectionStrategy> selected when the slot type was created or updated. If C<valueSelectionStrategy> is set to C<ORIGINAL_VALUE>, the value provided by the user is returned, if the user value is similar to the slot values. If C<valueSelectionStrategy> is set to C<TOP_RESOLUTION> Amazon Lex returns the first value in the resolution list or, if there is no resolution list, null. If you don't specify a C<valueSelectionStrategy>, the default is C<ORIGINAL_VALUE>. =head2 SlotToElicit => Str If the C<dialogState> value is C<ElicitSlot>, returns the name of the slot for which Amazon Lex is eliciting a value. =head2 _request_id => Str =cut