'2.0', 'service' => '

Amazon Lex provides both build and runtime endpoints. Each endpoint provides a set of operations (API). Your conversational bot uses the runtime API to understand user utterances (user input text or voice). For example, suppose a user says "I want pizza", your bot sends this input to Amazon Lex using the runtime API. Amazon Lex recognizes that the user request is for the OrderPizza intent (one of the intents defined in the bot). Then Amazon Lex engages in user conversation on behalf of the bot to elicit required information (slot values, such as pizza size and crust type), and then performs fulfillment activity (that you configured when you created the bot). You use the build-time API to create and manage your Amazon Lex bot. For a list of build-time operations, see the build-time API, .

', 'operations' => [ 'DeleteSession' => '

Removes session information for a specified bot, alias, and user ID.

', 'GetSession' => '

Returns session information for a specified bot, alias, and user ID.

', 'PostContent' => '

Sends user input (text or speech) to Amazon Lex. Clients use this API to send text and audio requests to Amazon Lex at runtime. Amazon Lex interprets the user input using the machine learning model that it built for the bot.

The PostContent operation supports audio input at 8kHz and 16kHz. You can use 8kHz audio to achieve higher speech recognition accuracy in telephone audio applications.

In response, Amazon Lex returns the next message to convey to the user. Consider the following example messages:

Not all Amazon Lex messages require a response from the user. For example, conclusion statements do not require a response. Some messages require only a yes or no response. In addition to the message, Amazon Lex provides additional context about the message in the response that you can use to enhance client behavior, such as displaying the appropriate client user interface. Consider the following examples:

In addition, Amazon Lex also returns your application-specific sessionAttributes. For more information, see Managing Conversation Context.

', 'PostText' => '

Sends user input to Amazon Lex. Client applications can use this API to send requests to Amazon Lex at runtime. Amazon Lex then interprets the user input using the machine learning model it built for the bot.

In response, Amazon Lex returns the next message to convey to the user an optional responseCard to display. Consider the following example messages:

Not all Amazon Lex messages require a user response. For example, a conclusion statement does not require a response. Some messages require only a "yes" or "no" user response. In addition to the message, Amazon Lex provides additional context about the message in the response that you might use to enhance client behavior, for example, to display the appropriate client user interface. These are the slotToElicit, dialogState, intentName, and slots fields in the response. Consider the following examples:

In addition, Amazon Lex also returns your application-specific sessionAttributes. For more information, see Managing Conversation Context.

', 'PutSession' => '

Creates a new session or modifies an existing session with an Amazon Lex bot. Use this operation to enable your application to set the state of the bot.

For more information, see Managing Sessions.

', ], 'shapes' => [ 'Accept' => [ 'base' => NULL, 'refs' => [ 'PostContentRequest$accept' => '

You pass this value as the Accept HTTP header.

The message Amazon Lex returns in the response can be either text or speech based on the Accept HTTP header value in the request.

', 'PutSessionRequest$accept' => '

The message that Amazon Lex returns in the response can be either text or speech based depending on the value of this field.

', ], ], 'ActiveContext' => [ 'base' => '

A context is a variable that contains information about the current state of the conversation between a user and Amazon Lex. Context can be set automatically by Amazon Lex when an intent is fulfilled, or it can be set at runtime using the PutContent, PutText, or PutSession operation.

', 'refs' => [ 'ActiveContextsList$member' => NULL, ], ], 'ActiveContextName' => [ 'base' => NULL, 'refs' => [ 'ActiveContext$name' => '

The name of the context.

', ], ], 'ActiveContextParametersMap' => [ 'base' => NULL, 'refs' => [ 'ActiveContext$parameters' => '

State variables for the current context. You can use these values as default values for slots in subsequent events.

', ], ], 'ActiveContextTimeToLive' => [ 'base' => '

The length of time or number of turns that a context remains active.

', 'refs' => [ 'ActiveContext$timeToLive' => '

The length of time or number of turns that a context remains active.

', ], ], 'ActiveContextTimeToLiveInSeconds' => [ 'base' => NULL, 'refs' => [ 'ActiveContextTimeToLive$timeToLiveInSeconds' => '

The number of seconds that the context should be active after it is first sent in a PostContent or PostText response. You can set the value between 5 and 86,400 seconds (24 hours).

', ], ], 'ActiveContextTurnsToLive' => [ 'base' => NULL, 'refs' => [ 'ActiveContextTimeToLive$turnsToLive' => '

The number of conversation turns that the context should be active. A conversation turn is one PostContent or PostText request and the corresponding response from Amazon Lex.

', ], ], 'ActiveContextsList' => [ 'base' => NULL, 'refs' => [ 'GetSessionResponse$activeContexts' => '

A list of active contexts for the session. A context can be set when an intent is fulfilled or by calling the PostContent, PostText, or PutSession operation.

You can use a context to control the intents that can follow up an intent, or to modify the operation of your application.

', 'PostTextRequest$activeContexts' => '

A list of contexts active for the request. A context can be activated when a previous intent is fulfilled, or by including the context in the request,

If you don\'t specify a list of contexts, Amazon Lex will use the current list of contexts for the session. If you specify an empty list, all contexts for the session are cleared.

', 'PostTextResponse$activeContexts' => '

A list of active contexts for the session. A context can be set when an intent is fulfilled or by calling the PostContent, PostText, or PutSession operation.

You can use a context to control the intents that can follow up an intent, or to modify the operation of your application.

', 'PutSessionRequest$activeContexts' => '

A list of contexts active for the request. A context can be activated when a previous intent is fulfilled, or by including the context in the request,

If you don\'t specify a list of contexts, Amazon Lex will use the current list of contexts for the session. If you specify an empty list, all contexts for the session are cleared.

', ], ], 'ActiveContextsString' => [ 'base' => NULL, 'refs' => [ 'PostContentRequest$activeContexts' => '

A list of contexts active for the request. A context can be activated when a previous intent is fulfilled, or by including the context in the request,

If you don\'t specify a list of contexts, Amazon Lex will use the current list of contexts for the session. If you specify an empty list, all contexts for the session are cleared.

', 'PostContentResponse$activeContexts' => '

A list of active contexts for the session. A context can be set when an intent is fulfilled or by calling the PostContent, PostText, or PutSession operation.

You can use a context to control the intents that can follow up an intent, or to modify the operation of your application.

', 'PutSessionResponse$activeContexts' => '

A list of active contexts for the session.

', ], ], 'AttributesString' => [ 'base' => NULL, 'refs' => [ 'PostContentRequest$sessionAttributes' => '

You pass this value as the x-amz-lex-session-attributes HTTP header.

Application-specific information passed between Amazon Lex and a client application. The value must be a JSON serialized and base64 encoded map with string keys and values. The total size of the sessionAttributes and requestAttributes headers is limited to 12 KB.

For more information, see Setting Session Attributes.

', 'PostContentRequest$requestAttributes' => '

You pass this value as the x-amz-lex-request-attributes HTTP header.

Request-specific information passed between Amazon Lex and a client application. The value must be a JSON serialized and base64 encoded map with string keys and values. The total size of the requestAttributes and sessionAttributes headers is limited to 12 KB.

The namespace x-amz-lex: is reserved for special attributes. Don\'t create any request attributes with the prefix x-amz-lex:.

For more information, see Setting Request Attributes.

', ], ], 'BadGatewayException' => [ 'base' => '

Either the Amazon Lex bot is still building, or one of the dependent services (Amazon Polly, AWS Lambda) failed with an internal service error.

', 'refs' => [], ], 'BadRequestException' => [ 'base' => '

Request validation failed, there is no usable message in the context, or the bot build failed, is still in progress, or contains unbuilt changes.

', 'refs' => [], ], 'BlobStream' => [ 'base' => NULL, 'refs' => [ 'PostContentRequest$inputStream' => '

User input in PCM or Opus audio format or text format as described in the Content-Type HTTP header.

You can stream audio data to Amazon Lex or you can create a local buffer that captures all of the audio data before sending. In general, you get better performance if you stream audio data rather than buffering the data locally.

', 'PostContentResponse$audioStream' => '

The prompt (or statement) to convey to the user. This is based on the bot configuration and context. For example, if Amazon Lex did not understand the user intent, it sends the clarificationPrompt configured for the bot. If the intent requires confirmation before taking the fulfillment action, it sends the confirmationPrompt. Another example: Suppose that the Lambda function successfully fulfilled the intent, and sent a message to convey to the user. Then Amazon Lex sends that message in the response.

', 'PutSessionResponse$audioStream' => '

The audio version of the message to convey to the user.

', ], ], 'BotAlias' => [ 'base' => NULL, 'refs' => [ 'DeleteSessionRequest$botAlias' => '

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

', 'DeleteSessionResponse$botAlias' => '

The alias in use for the bot associated with the session data.

', 'GetSessionRequest$botAlias' => '

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

', 'PostContentRequest$botAlias' => '

Alias of the Amazon Lex bot.

', 'PostTextRequest$botAlias' => '

The alias of the Amazon Lex bot.

', 'PutSessionRequest$botAlias' => '

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

', ], ], 'BotName' => [ 'base' => NULL, 'refs' => [ 'DeleteSessionRequest$botName' => '

The name of the bot that contains the session data.

', 'DeleteSessionResponse$botName' => '

The name of the bot associated with the session data.

', 'GetSessionRequest$botName' => '

The name of the bot that contains the session data.

', 'PostContentRequest$botName' => '

Name of the Amazon Lex bot.

', 'PostTextRequest$botName' => '

The name of the Amazon Lex bot.

', 'PutSessionRequest$botName' => '

The name of the bot that contains the session data.

', ], ], 'BotVersion' => [ 'base' => NULL, 'refs' => [ 'PostContentResponse$botVersion' => '

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.

', 'PostTextResponse$botVersion' => '

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.

', ], ], 'Button' => [ 'base' => '

Represents an option to be shown on the client platform (Facebook, Slack, etc.)

', 'refs' => [ 'listOfButtons$member' => NULL, ], ], 'ButtonTextStringWithLength' => [ 'base' => NULL, 'refs' => [ 'Button$text' => '

Text that is visible to the user on the button.

', ], ], 'ButtonValueStringWithLength' => [ 'base' => NULL, 'refs' => [ 'Button$value' => '

The value sent to Amazon Lex when a user chooses the button. For example, consider button text "NYC." When the user chooses the button, the value sent can be "New York City."

', ], ], 'ConfirmationStatus' => [ 'base' => NULL, 'refs' => [ 'IntentSummary$confirmationStatus' => '

The status of the intent after the user responds to the confirmation prompt. If the user confirms the intent, Amazon Lex sets this field to Confirmed. If the user denies the intent, Amazon Lex sets this value to Denied. The possible values are:

', ], ], 'ConflictException' => [ 'base' => '

Two clients are using the same AWS account, Amazon Lex bot, and user ID.

', 'refs' => [], ], 'ContentType' => [ 'base' => NULL, 'refs' => [ 'ResponseCard$contentType' => '

The content type of the response.

', ], ], 'DeleteSessionRequest' => [ 'base' => NULL, 'refs' => [], ], 'DeleteSessionResponse' => [ 'base' => NULL, 'refs' => [], ], 'DependencyFailedException' => [ 'base' => '

One of the dependencies, such as AWS Lambda or Amazon Polly, threw an exception. For example,

', 'refs' => [], ], 'DialogAction' => [ 'base' => '

Describes the next action that the bot should take in its interaction with the user and provides information about the context in which the action takes place. Use the DialogAction data type to set the interaction to a specific state, or to return the interaction to a previous state.

', 'refs' => [ 'GetSessionResponse$dialogAction' => '

Describes the current state of the bot.

', 'PutSessionRequest$dialogAction' => '

Sets the next action that the bot should take to fulfill the conversation.

', ], ], 'DialogActionType' => [ 'base' => NULL, 'refs' => [ 'DialogAction$type' => '

The next action that the bot should take in its interaction with the user. The possible values are:

', 'IntentSummary$dialogActionType' => '

The next action that the bot should take in its interaction with the user. The possible values are:

', ], ], 'DialogState' => [ 'base' => NULL, 'refs' => [ 'PostContentResponse$dialogState' => '

Identifies the current state of the user interaction. Amazon Lex returns one of the following values as dialogState. The client can optionally use this information to customize the user interface.

', 'PostTextResponse$dialogState' => '

Identifies the current state of the user interaction. Amazon Lex returns one of the following values as dialogState. The client can optionally use this information to customize the user interface.

', 'PutSessionResponse$dialogState' => '

', ], ], 'Double' => [ 'base' => NULL, 'refs' => [ 'IntentConfidence$score' => '

A score that indicates how confident Amazon Lex is that an intent satisfies the user\'s intent. Ranges between 0.00 and 1.00. Higher scores indicate higher confidence.

', ], ], 'ErrorMessage' => [ 'base' => NULL, 'refs' => [ 'BadGatewayException$Message' => NULL, 'DependencyFailedException$Message' => NULL, 'LoopDetectedException$Message' => NULL, ], ], 'FulfillmentState' => [ 'base' => NULL, 'refs' => [ 'DialogAction$fulfillmentState' => '

The fulfillment state of the intent. The possible values are:

', 'IntentSummary$fulfillmentState' => '

The fulfillment state of the intent. The possible values are:

', ], ], 'GenericAttachment' => [ 'base' => '

Represents an option rendered to the user when a prompt is shown. It could be an image, a button, a link, or text.

', 'refs' => [ 'genericAttachmentList$member' => NULL, ], ], 'GetSessionRequest' => [ 'base' => NULL, 'refs' => [], ], 'GetSessionResponse' => [ 'base' => NULL, 'refs' => [], ], 'HttpContentType' => [ 'base' => NULL, 'refs' => [ 'PostContentRequest$contentType' => '

You pass this value as the Content-Type HTTP header.

Indicates the audio format or text. The header value must start with one of the following prefixes:

', 'PostContentResponse$contentType' => '

Content type as specified in the Accept HTTP header in the request.

', 'PutSessionResponse$contentType' => '

Content type as specified in the Accept HTTP header in the request.

', ], ], 'IntentConfidence' => [ 'base' => '

Provides a score that indicates the confidence that Amazon Lex has that an intent is the one that satisfies the user\'s intent.

', 'refs' => [ 'PostTextResponse$nluIntentConfidence' => '

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.

The score is a relative score, not an absolute score. The score may change based on improvements to Amazon Lex.

', 'PredictedIntent$nluIntentConfidence' => '

Indicates how confident Amazon Lex is that an intent satisfies the user\'s intent.

', ], ], 'IntentList' => [ 'base' => NULL, 'refs' => [ 'PostTextResponse$alternativeIntents' => '

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.

', ], ], 'IntentName' => [ 'base' => NULL, 'refs' => [ 'DialogAction$intentName' => '

The name of the intent.

', 'IntentSummary$intentName' => '

The name of the intent.

', 'PostContentResponse$intentName' => '

Current user intent that Amazon Lex is aware of.

', 'PostTextResponse$intentName' => '

The current user intent that Amazon Lex is aware of.

', 'PredictedIntent$intentName' => '

The name of the intent that Amazon Lex suggests satisfies the user\'s intent.

', 'PutSessionResponse$intentName' => '

The name of the current intent.

', ], ], 'IntentSummary' => [ 'base' => '

Provides information about the state of an intent. You can use this information to get the current state of an intent so that you can process the intent, or so that you can return the intent to its previous state.

', 'refs' => [ 'IntentSummaryList$member' => NULL, ], ], 'IntentSummaryCheckpointLabel' => [ 'base' => NULL, 'refs' => [ 'GetSessionRequest$checkpointLabelFilter' => '

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.

', 'IntentSummary$checkpointLabel' => '

A user-defined label that identifies a particular intent. You can use this label to return to a previous intent.

Use the checkpointLabelFilter parameter of the GetSessionRequest operation to filter the intents returned by the operation to those with only the specified label.

', ], ], 'IntentSummaryList' => [ 'base' => NULL, 'refs' => [ 'GetSessionResponse$recentIntentSummaryView' => '

An array of information about the intents used in the session. The array can contain a maximum of three summaries. If more than three intents are used in the session, the recentIntentSummaryView operation contains information about the last three intents used.

If you set the checkpointLabelFilter parameter in the request, the array contains only the intents with the specified label.

', 'PutSessionRequest$recentIntentSummaryView' => '

A summary of the recent intents for the bot. You can use the intent summary view to set a checkpoint label on an intent and modify attributes of intents. You can also use it to remove or add intent summary objects to the list.

An intent that you modify or add to the list must make sense for the bot. For example, the intent name must be valid for the bot. You must provide valid values for:

If you send the recentIntentSummaryView parameter in a PutSession request, the contents of the new summary view replaces the old summary view. For example, if a GetSession request returns three intents in the summary view and you call PutSession with one intent in the summary view, the next call to GetSession will only return one intent.

', ], ], 'InternalFailureException' => [ 'base' => '

Internal service error. Retry the call.

', 'refs' => [], ], 'LimitExceededException' => [ 'base' => '

Exceeded a limit.

', 'refs' => [], ], 'LoopDetectedException' => [ 'base' => '

This exception is not used.

', 'refs' => [], ], 'MessageFormatType' => [ 'base' => NULL, 'refs' => [ 'DialogAction$messageFormat' => '', 'PostContentResponse$messageFormat' => '

The format of the response message. One of the following values:

', 'PostTextResponse$messageFormat' => '

The format of the response message. One of the following values:

', 'PutSessionResponse$messageFormat' => '

The format of the response message. One of the following values:

', ], ], 'NotAcceptableException' => [ 'base' => '

The accept header in the request does not have a valid value.

', 'refs' => [], ], 'NotFoundException' => [ 'base' => '

The resource (such as the Amazon Lex bot or an alias) that is referred to is not found.

', 'refs' => [], ], 'ParameterName' => [ 'base' => NULL, 'refs' => [ 'ActiveContextParametersMap$key' => NULL, ], ], 'PostContentRequest' => [ 'base' => NULL, 'refs' => [], ], 'PostContentResponse' => [ 'base' => NULL, 'refs' => [], ], 'PostTextRequest' => [ 'base' => NULL, 'refs' => [], ], 'PostTextResponse' => [ 'base' => NULL, 'refs' => [], ], 'PredictedIntent' => [ 'base' => '

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.

', 'refs' => [ 'IntentList$member' => NULL, ], ], 'PutSessionRequest' => [ 'base' => NULL, 'refs' => [], ], 'PutSessionResponse' => [ 'base' => NULL, 'refs' => [], ], 'RequestTimeoutException' => [ 'base' => '

The input speech is too long.

', 'refs' => [], ], 'ResponseCard' => [ 'base' => '

If you configure a response card when creating your bots, Amazon Lex substitutes the session attributes and slot values that are available, and then returns it. The response card can also come from a Lambda function ( dialogCodeHook and fulfillmentActivity on an intent).

', 'refs' => [ 'PostTextResponse$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).

', ], ], 'SensitiveString' => [ 'base' => NULL, 'refs' => [ 'PostContentResponse$encodedMessage' => '

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 Delegate as the dialogAction.type in 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.

The encodedMessage field is base-64 encoded. You must decode the field before you can use the value.

', 'PutSessionResponse$encodedMessage' => '

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.

', ], ], 'SensitiveStringUnbounded' => [ 'base' => NULL, 'refs' => [ 'PostContentResponse$encodedInputTranscript' => '

The text used to process the request.

If the input was an audio stream, the encodedInputTranscript field contains the text extracted from the audio stream. This is the text that is actually processed to recognize intents and slot values. You can use this information to determine if Amazon Lex is correctly processing the audio that you send.

The encodedInputTranscript field is base-64 encoded. You must decode the field before you can use the value.

', ], ], 'SentimentLabel' => [ 'base' => NULL, 'refs' => [ 'SentimentResponse$sentimentLabel' => '

The inferred sentiment that Amazon Comprehend has the highest confidence in.

', ], ], 'SentimentResponse' => [ 'base' => '

The sentiment expressed in an utterance.

When the bot is configured to send utterances to Amazon Comprehend for sentiment analysis, this field structure contains the result of the analysis.

', 'refs' => [ 'PostTextResponse$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.

', ], ], 'SentimentScore' => [ 'base' => NULL, 'refs' => [ 'SentimentResponse$sentimentScore' => '

The likelihood that the sentiment was correctly inferred.

', ], ], 'String' => [ 'base' => NULL, 'refs' => [ 'BadRequestException$message' => NULL, 'ConflictException$message' => NULL, 'DeleteSessionResponse$sessionId' => '

The unique identifier for the session.

', 'DialogAction$slotToElicit' => '

The name of the slot that should be elicited from the user.

', 'GetSessionResponse$sessionId' => '

A unique identifier for the session.

', 'IntentSummary$slotToElicit' => '

The next slot to elicit from the user. If there is not slot to elicit, the field is blank.

', 'InternalFailureException$message' => NULL, 'LimitExceededException$retryAfterSeconds' => NULL, 'LimitExceededException$message' => NULL, 'NotAcceptableException$message' => NULL, 'NotFoundException$message' => NULL, 'PostContentResponse$nluIntentConfidence' => '

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.

The score is a relative score, not an absolute score. The score may change based on improvements to Amazon Lex.

', 'PostContentResponse$alternativeIntents' => '

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.

', 'PostContentResponse$slots' => '

Map of zero or more intent slots (name/value pairs) Amazon Lex detected from the user input during the conversation. The field is base-64 encoded.

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. If valueSelectionStrategy is set to ORIGINAL_VALUE, the value provided by the user is returned, if the user value is similar to the slot values. If valueSelectionStrategy is set to 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 valueSelectionStrategy, the default is ORIGINAL_VALUE.

', 'PostContentResponse$sessionAttributes' => '

Map of key/value pairs representing the session-specific context information.

', 'PostContentResponse$sentimentResponse' => '

The sentiment expressed in an utterance.

When the bot is configured to send utterances to Amazon Comprehend for sentiment analysis, this field contains the result of the analysis.

', 'PostContentResponse$slotToElicit' => '

If the dialogState value is ElicitSlot, returns the name of the slot for which Amazon Lex is eliciting a value.

', 'PostContentResponse$inputTranscript' => '

The text used to process the request.

You can use this field only 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 inputTranscript field is null. You should use the encodedInputTranscript field instead.

If the input was an audio stream, the inputTranscript field contains the text extracted from the audio stream. This is the text that is actually processed to recognize intents and slot values. You can use this information to determine if Amazon Lex is correctly processing the audio that you send.

', 'PostContentResponse$sessionId' => '

The unique identifier for the session.

', 'PostTextResponse$slotToElicit' => '

If the dialogState value is ElicitSlot, returns the name of the slot for which Amazon Lex is eliciting a value.

', 'PostTextResponse$sessionId' => '

A unique identifier for the session.

', 'PutSessionResponse$slots' => '

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. If valueSelectionStrategy is set to ORIGINAL_VALUE, the value provided by the user is returned, if the user value is similar to the slot values. If valueSelectionStrategy is set to 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 valueSelectionStrategy the default is ORIGINAL_VALUE.

', 'PutSessionResponse$sessionAttributes' => '

Map of key/value pairs representing session-specific context information.

', 'PutSessionResponse$slotToElicit' => '

If the dialogState is ElicitSlot, returns the name of the slot for which Amazon Lex is eliciting a value.

', 'PutSessionResponse$sessionId' => '

A unique identifier for the session.

', 'RequestTimeoutException$message' => NULL, 'ResponseCard$version' => '

The version of the response card format.

', 'StringMap$key' => NULL, 'StringMap$value' => NULL, 'UnsupportedMediaTypeException$message' => NULL, ], ], 'StringMap' => [ 'base' => NULL, 'refs' => [ 'DialogAction$slots' => '

Map of the slots that have been gathered and their values.

', 'GetSessionResponse$sessionAttributes' => '

Map of key/value pairs representing the session-specific context information. It contains application information passed between Amazon Lex and a client application.

', 'IntentSummary$slots' => '

Map of the slots that have been gathered and their values.

', 'PostTextRequest$sessionAttributes' => '

Application-specific information passed between Amazon Lex and a client application.

For more information, see Setting Session Attributes.

', 'PostTextRequest$requestAttributes' => '

Request-specific information passed between Amazon Lex and a client application.

The namespace x-amz-lex: is reserved for special attributes. Don\'t create any request attributes with the prefix x-amz-lex:.

For more information, see Setting Request Attributes.

', 'PostTextResponse$slots' => '

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 valueSelectionStrategy selected when the slot type was created or updated. If valueSelectionStrategy is set to ORIGINAL_VALUE, the value provided by the user is returned, if the user value is similar to the slot values. If valueSelectionStrategy is set to 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 valueSelectionStrategy, the default is ORIGINAL_VALUE.

', 'PostTextResponse$sessionAttributes' => '

A map of key-value pairs representing the session-specific context information.

', 'PredictedIntent$slots' => '

The slot and slot values associated with the predicted intent.

', 'PutSessionRequest$sessionAttributes' => '

Map of key/value pairs representing the session-specific context information. It contains application information passed between Amazon Lex and a client application.

', ], ], 'StringUrlWithLength' => [ 'base' => NULL, 'refs' => [ 'GenericAttachment$attachmentLinkUrl' => '

The URL of an attachment to the response card.

', 'GenericAttachment$imageUrl' => '

The URL of an image that is displayed to the user.

', ], ], 'StringWithLength' => [ 'base' => NULL, 'refs' => [ 'GenericAttachment$title' => '

The title of the option.

', 'GenericAttachment$subTitle' => '

The subtitle shown below the title.

', ], ], 'Text' => [ 'base' => NULL, 'refs' => [ 'ActiveContextParametersMap$value' => NULL, 'DialogAction$message' => '

The message that should be shown to the user. If you don\'t specify a message, Amazon Lex will use the message configured for the intent.

', 'PostContentResponse$message' => '

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 the encodedMessage field instead.

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 Delegate as the dialogAction.type in 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.

', 'PostTextRequest$inputText' => '

The text that the user entered (Amazon Lex interprets this text).

', 'PostTextResponse$message' => '

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 Delegate as the dialogAction.type 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.

', 'PutSessionResponse$message' => '

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 the encodedMessage field instead.

', ], ], 'UnsupportedMediaTypeException' => [ 'base' => '

The Content-Type header (PostContent API) has an invalid value.

', 'refs' => [], ], 'UserId' => [ 'base' => NULL, 'refs' => [ 'DeleteSessionRequest$userId' => '

The identifier of the user associated with the session data.

', 'DeleteSessionResponse$userId' => '

The ID of the client application user.

', 'GetSessionRequest$userId' => '

The ID of the client application user. Amazon Lex uses this to identify a user\'s conversation with your bot.

', 'PostContentRequest$userId' => '

The ID of the client application user. Amazon Lex uses this to identify a user\'s conversation with your bot. At runtime, each request must contain the userID field.

To decide the user ID to use for your application, consider the following factors.

', 'PostTextRequest$userId' => '

The ID of the client application user. Amazon Lex uses this to identify a user\'s conversation with your bot. At runtime, each request must contain the userID field.

To decide the user ID to use for your application, consider the following factors.

', 'PutSessionRequest$userId' => '

The ID of the client application user. Amazon Lex uses this to identify a user\'s conversation with your bot.

', ], ], 'genericAttachmentList' => [ 'base' => NULL, 'refs' => [ 'ResponseCard$genericAttachments' => '

An array of attachment objects representing options.

', ], ], 'listOfButtons' => [ 'base' => NULL, 'refs' => [ 'GenericAttachment$buttons' => '

The list of options to show to the user.

', ], ], ],];