LexRuntimeV2Client#
Index > LexRuntimeV2 > LexRuntimeV2Client
Auto-generated documentation for LexRuntimeV2 type annotations stubs module mypy-boto3-lexv2-runtime.
LexRuntimeV2Client#
Type annotations and code completion for boto3.client("lexv2-runtime")
.
boto3 documentation
# LexRuntimeV2Client usage example
from boto3.session import Session
from mypy_boto3_lexv2_runtime.client import LexRuntimeV2Client
def get_lexv2-runtime_client() -> LexRuntimeV2Client:
return Session().client("lexv2-runtime")
Exceptions#
boto3
client exceptions are generated in runtime.
This class provides code completion for boto3.client("lexv2-runtime").exceptions
structure.
# Exceptions.exceptions usage example
client = boto3.client("lexv2-runtime")
try:
do_something(client)
except (
client.exceptions.AccessDeniedException,
client.exceptions.BadGatewayException,
client.exceptions.ClientError,
client.exceptions.ConflictException,
client.exceptions.DependencyFailedException,
client.exceptions.InternalServerException,
client.exceptions.ResourceNotFoundException,
client.exceptions.ThrottlingException,
client.exceptions.ValidationException,
) as e:
print(e)
# Exceptions.exceptions type checking example
from mypy_boto3_lexv2_runtime.client import Exceptions
def handle_error(exc: Exceptions.AccessDeniedException) -> None:
...
Methods#
can_paginate#
Check if an operation can be paginated.
Type annotations and code completion for boto3.client("lexv2-runtime").can_paginate
method.
boto3 documentation
# can_paginate method definition
def can_paginate(
self,
operation_name: str,
) -> bool:
...
close#
Closes underlying endpoint connections.
Type annotations and code completion for boto3.client("lexv2-runtime").close
method.
boto3 documentation
# close method definition
def close(
self,
) -> None:
...
delete_session#
Removes session information for a specified bot, alias, and user ID.
Type annotations and code completion for boto3.client("lexv2-runtime").delete_session
method.
boto3 documentation
# delete_session method definition
def delete_session(
self,
*,
botId: str,
botAliasId: str,
localeId: str,
sessionId: str,
) -> DeleteSessionResponseTypeDef: # (1)
...
# delete_session method usage example with argument unpacking
kwargs: DeleteSessionRequestRequestTypeDef = { # (1)
"botId": ...,
"botAliasId": ...,
"localeId": ...,
"sessionId": ...,
}
parent.delete_session(**kwargs)
generate_presigned_url#
Generate a presigned url given a client, its method, and arguments.
Type annotations and code completion for boto3.client("lexv2-runtime").generate_presigned_url
method.
boto3 documentation
# generate_presigned_url method definition
def generate_presigned_url(
self,
ClientMethod: str,
Params: Mapping[str, Any] = ...,
ExpiresIn: int = 3600,
HttpMethod: str = ...,
) -> str:
...
get_session#
Returns session information for a specified bot, alias, and user.
Type annotations and code completion for boto3.client("lexv2-runtime").get_session
method.
boto3 documentation
# get_session method definition
def get_session(
self,
*,
botId: str,
botAliasId: str,
localeId: str,
sessionId: str,
) -> GetSessionResponseTypeDef: # (1)
...
# get_session method usage example with argument unpacking
kwargs: GetSessionRequestRequestTypeDef = { # (1)
"botId": ...,
"botAliasId": ...,
"localeId": ...,
"sessionId": ...,
}
parent.get_session(**kwargs)
put_session#
Creates a new session or modifies an existing session with an Amazon Lex V2 bot.
Type annotations and code completion for boto3.client("lexv2-runtime").put_session
method.
boto3 documentation
# put_session method definition
def put_session(
self,
*,
botId: str,
botAliasId: str,
localeId: str,
sessionId: str,
sessionState: SessionStateTypeDef, # (1)
messages: Sequence[MessageUnionTypeDef] = ..., # (2)
requestAttributes: Mapping[str, str] = ...,
responseContentType: str = ...,
) -> PutSessionResponseTypeDef: # (3)
...
# put_session method usage example with argument unpacking
kwargs: PutSessionRequestRequestTypeDef = { # (1)
"botId": ...,
"botAliasId": ...,
"localeId": ...,
"sessionId": ...,
"sessionState": ...,
}
parent.put_session(**kwargs)
recognize_text#
Sends user input to Amazon Lex V2.
Type annotations and code completion for boto3.client("lexv2-runtime").recognize_text
method.
boto3 documentation
# recognize_text method definition
def recognize_text(
self,
*,
botId: str,
botAliasId: str,
localeId: str,
sessionId: str,
text: str,
sessionState: SessionStateTypeDef = ..., # (1)
requestAttributes: Mapping[str, str] = ...,
) -> RecognizeTextResponseTypeDef: # (2)
...
# recognize_text method usage example with argument unpacking
kwargs: RecognizeTextRequestRequestTypeDef = { # (1)
"botId": ...,
"botAliasId": ...,
"localeId": ...,
"sessionId": ...,
"text": ...,
}
parent.recognize_text(**kwargs)
recognize_utterance#
Sends user input to Amazon Lex V2.
Type annotations and code completion for boto3.client("lexv2-runtime").recognize_utterance
method.
boto3 documentation
# recognize_utterance method definition
def recognize_utterance(
self,
*,
botId: str,
botAliasId: str,
localeId: str,
sessionId: str,
requestContentType: str,
sessionState: str = ...,
requestAttributes: str = ...,
responseContentType: str = ...,
inputStream: BlobTypeDef = ...,
) -> RecognizeUtteranceResponseTypeDef: # (1)
...
# recognize_utterance method usage example with argument unpacking
kwargs: RecognizeUtteranceRequestRequestTypeDef = { # (1)
"botId": ...,
"botAliasId": ...,
"localeId": ...,
"sessionId": ...,
"requestContentType": ...,
}
parent.recognize_utterance(**kwargs)