Class: Aws::LexRuntimeV2::Client
- Inherits:
-
Seahorse::Client::Base
- Object
- Seahorse::Client::Base
- Aws::LexRuntimeV2::Client
- Includes:
- ClientStubs
- Defined in:
- lib/aws-sdk-lexruntimev2/client.rb
Overview
An API client for LexRuntimeV2. To construct a client, you need to configure a ‘:region` and `:credentials`.
client = Aws::LexRuntimeV2::Client.new(
region: region_name,
credentials: credentials,
# ...
)
For details on configuring region and credentials see the [developer guide](/sdk-for-ruby/v3/developer-guide/setup-config.html).
See #initialize for a full list of supported configuration options.
Class Attribute Summary collapse
- .identifier ⇒ Object readonly private
API Operations collapse
-
#delete_session(params = {}) ⇒ Types::DeleteSessionResponse
Removes session information for a specified bot, alias, and user ID.
-
#get_session(params = {}) ⇒ Types::GetSessionResponse
Returns session information for a specified bot, alias, and user.
-
#put_session(params = {}) ⇒ Types::PutSessionResponse
Creates a new session or modifies an existing session with an Amazon Lex V2 bot.
-
#recognize_text(params = {}) ⇒ Types::RecognizeTextResponse
Sends user input to Amazon Lex V2.
-
#recognize_utterance(params = {}) ⇒ Types::RecognizeUtteranceResponse
Sends user input to Amazon Lex V2.
Class Method Summary collapse
- .errors_module ⇒ Object private
Instance Method Summary collapse
- #build_request(operation_name, params = {}) ⇒ Object private
-
#initialize(options) ⇒ Client
constructor
A new instance of Client.
- #waiter_names ⇒ Object deprecated private Deprecated.
Constructor Details
#initialize(options) ⇒ Client
Returns a new instance of Client.
478 479 480 |
# File 'lib/aws-sdk-lexruntimev2/client.rb', line 478 def initialize(*args) super end |
Class Attribute Details
.identifier ⇒ Object (readonly)
This method is part of a private API. You should avoid using this method if possible, as it may be removed or be changed in the future.
1270 1271 1272 |
# File 'lib/aws-sdk-lexruntimev2/client.rb', line 1270 def identifier @identifier end |
Class Method Details
.errors_module ⇒ Object
This method is part of a private API. You should avoid using this method if possible, as it may be removed or be changed in the future.
1273 1274 1275 |
# File 'lib/aws-sdk-lexruntimev2/client.rb', line 1273 def errors_module Errors end |
Instance Method Details
#build_request(operation_name, params = {}) ⇒ Object
This method is part of a private API. You should avoid using this method if possible, as it may be removed or be changed in the future.
1243 1244 1245 1246 1247 1248 1249 1250 1251 1252 1253 1254 1255 1256 1257 1258 1259 |
# File 'lib/aws-sdk-lexruntimev2/client.rb', line 1243 def build_request(operation_name, params = {}) handlers = @handlers.for(operation_name) tracer = config.telemetry_provider.tracer_provider.tracer( Aws::Telemetry.module_to_tracer_name('Aws::LexRuntimeV2') ) context = Seahorse::Client::RequestContext.new( operation_name: operation_name, operation: config.api.operation(operation_name), client: self, params: params, config: config, tracer: tracer ) context[:gem_name] = 'aws-sdk-lexruntimev2' context[:gem_version] = '1.49.0' Seahorse::Client::Request.new(handlers, context) end |
#delete_session(params = {}) ⇒ Types::DeleteSessionResponse
Removes session information for a specified bot, alias, and user ID.
You can use this operation to restart a conversation with a bot. When you remove a session, the entire history of the session is removed so that you can start again.
You don’t need to delete a session. Sessions have a time limit and will expire. Set the session time limit when you create the bot. The default is 5 minutes, but you can specify anything between 1 minute and 24 hours.
If you specify a bot or alias ID that doesn’t exist, you receive a ‘BadRequestException.`
If the locale doesn’t exist in the bot, or if the locale hasn’t been enables for the alias, you receive a ‘BadRequestException`.
541 542 543 544 |
# File 'lib/aws-sdk-lexruntimev2/client.rb', line 541 def delete_session(params = {}, = {}) req = build_request(:delete_session, params) req.send_request() end |
#get_session(params = {}) ⇒ Types::GetSessionResponse
Returns session information for a specified bot, alias, and user.
For example, you can use this operation to retrieve session information for a user that has left a long-running session in use.
If the bot, alias, or session identifier doesn’t exist, Amazon Lex V2 returns a ‘BadRequestException`. If the locale doesn’t exist or is not enabled for the alias, you receive a ‘BadRequestException`.
652 653 654 655 |
# File 'lib/aws-sdk-lexruntimev2/client.rb', line 652 def get_session(params = {}, = {}) req = build_request(:get_session, params) req.send_request() end |
#put_session(params = {}) ⇒ Types::PutSessionResponse
Creates a new session or modifies an existing session with an Amazon Lex V2 bot. Use this operation to enable your application to set the state of the bot.
819 820 821 822 |
# File 'lib/aws-sdk-lexruntimev2/client.rb', line 819 def put_session(params = {}, = {}, &block) req = build_request(:put_session, params) req.send_request(, &block) end |
#recognize_text(params = {}) ⇒ Types::RecognizeTextResponse
Sends user input to Amazon Lex V2. Client applications use this API to send requests to Amazon Lex V2 at runtime. Amazon Lex V2 then interprets the user input using the machine learning model that it build for the bot.
In response, Amazon Lex V2 returns the next message to convey to the user and an optional response card to display.
If the optional post-fulfillment response is specified, the messages are returned as follows. For more information, see [PostFulfillmentStatusSpecification].
-
**Success message** - Returned if the Lambda function completes successfully and the intent state is fulfilled or ready fulfillment if the message is present.
-
**Failed message** - The failed message is returned if the Lambda function throws an exception or if the Lambda function returns a failed intent state without a message.
-
**Timeout message** - If you don’t configure a timeout message and a timeout, and the Lambda function doesn’t return within 30 seconds, the timeout message is returned. If you configure a timeout, the timeout message is returned when the period times out.
For more information, see [Completion message].
[1]: docs.aws.amazon.com/lexv2/latest/dg/API_PostFulfillmentStatusSpecification.html [2]: docs.aws.amazon.com/lexv2/latest/dg/streaming-progress.html#progress-complete.html
1043 1044 1045 1046 |
# File 'lib/aws-sdk-lexruntimev2/client.rb', line 1043 def recognize_text(params = {}, = {}) req = build_request(:recognize_text, params) req.send_request() end |
#recognize_utterance(params = {}) ⇒ Types::RecognizeUtteranceResponse
Sends user input to Amazon Lex V2. You can send text or speech. Clients use this API to send text and audio requests to Amazon Lex V2 at runtime. Amazon Lex V2 interprets the user input using the machine learning model built for the bot.
The following request fields must be compressed with gzip and then base64 encoded before you send them to Amazon Lex V2.
-
requestAttributes
-
sessionState
The following response fields are compressed using gzip and then base64 encoded by Amazon Lex V2. Before you can use these fields, you must decode and decompress them.
-
inputTranscript
-
interpretations
-
messages
-
requestAttributes
-
sessionState
The example contains a Java application that compresses and encodes a Java object to send to Amazon Lex V2, and a second that decodes and decompresses a response from Amazon Lex V2.
If the optional post-fulfillment response is specified, the messages are returned as follows. For more information, see [PostFulfillmentStatusSpecification].
-
**Success message** - Returned if the Lambda function completes successfully and the intent state is fulfilled or ready fulfillment if the message is present.
-
**Failed message** - The failed message is returned if the Lambda function throws an exception or if the Lambda function returns a failed intent state without a message.
-
**Timeout message** - If you don’t configure a timeout message and a timeout, and the Lambda function doesn’t return within 30 seconds, the timeout message is returned. If you configure a timeout, the timeout message is returned when the period times out.
For more information, see [Completion message].
[1]: docs.aws.amazon.com/lexv2/latest/dg/API_PostFulfillmentStatusSpecification.html [2]: docs.aws.amazon.com/lexv2/latest/dg/streaming-progress.html#progress-complete.html
1234 1235 1236 1237 |
# File 'lib/aws-sdk-lexruntimev2/client.rb', line 1234 def recognize_utterance(params = {}, = {}, &block) req = build_request(:recognize_utterance, params) req.send_request(, &block) end |
#waiter_names ⇒ Object
This method is part of a private API. You should avoid using this method if possible, as it may be removed or be changed in the future.
1263 1264 1265 |
# File 'lib/aws-sdk-lexruntimev2/client.rb', line 1263 def waiter_names [] end |