LexModelBuildingServiceClient#
Index > LexModelBuildingService > LexModelBuildingServiceClient
Auto-generated documentation for LexModelBuildingService type annotations stubs module mypy-boto3-lex-models.
LexModelBuildingServiceClient#
Type annotations and code completion for boto3.client("lex-models")
.
boto3 documentation
# LexModelBuildingServiceClient usage example
from boto3.session import Session
from mypy_boto3_lex_models.client import LexModelBuildingServiceClient
def get_lex-models_client() -> LexModelBuildingServiceClient:
return Session().client("lex-models")
Exceptions#
boto3
client exceptions are generated in runtime.
This class provides code completion for boto3.client("lex-models").exceptions
structure.
# Exceptions.exceptions usage example
client = boto3.client("lex-models")
try:
do_something(client)
except (
client.exceptions.AccessDeniedException,
client.exceptions.BadRequestException,
client.exceptions.ClientError,
client.exceptions.ConflictException,
client.exceptions.InternalFailureException,
client.exceptions.LimitExceededException,
client.exceptions.NotFoundException,
client.exceptions.PreconditionFailedException,
client.exceptions.ResourceInUseException,
) as e:
print(e)
# Exceptions.exceptions type checking example
from mypy_boto3_lex_models.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("lex-models").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("lex-models").close
method.
boto3 documentation
# close method definition
def close(
self,
) -> None:
...
create_bot_version#
Creates a new version of the bot based on the $LATEST
version.
Type annotations and code completion for boto3.client("lex-models").create_bot_version
method.
boto3 documentation
# create_bot_version method definition
def create_bot_version(
self,
*,
name: str,
checksum: str = ...,
) -> CreateBotVersionResponseTypeDef: # (1)
...
# create_bot_version method usage example with argument unpacking
kwargs: CreateBotVersionRequestRequestTypeDef = { # (1)
"name": ...,
}
parent.create_bot_version(**kwargs)
create_intent_version#
Creates a new version of an intent based on the $LATEST
version of the intent.
Type annotations and code completion for boto3.client("lex-models").create_intent_version
method.
boto3 documentation
# create_intent_version method definition
def create_intent_version(
self,
*,
name: str,
checksum: str = ...,
) -> CreateIntentVersionResponseTypeDef: # (1)
...
# create_intent_version method usage example with argument unpacking
kwargs: CreateIntentVersionRequestRequestTypeDef = { # (1)
"name": ...,
}
parent.create_intent_version(**kwargs)
create_slot_type_version#
Creates a new version of a slot type based on the $LATEST
version of the
specified slot type.
Type annotations and code completion for boto3.client("lex-models").create_slot_type_version
method.
boto3 documentation
# create_slot_type_version method definition
def create_slot_type_version(
self,
*,
name: str,
checksum: str = ...,
) -> CreateSlotTypeVersionResponseTypeDef: # (1)
...
# create_slot_type_version method usage example with argument unpacking
kwargs: CreateSlotTypeVersionRequestRequestTypeDef = { # (1)
"name": ...,
}
parent.create_slot_type_version(**kwargs)
delete_bot#
Deletes all versions of the bot, including the $LATEST
version.
Type annotations and code completion for boto3.client("lex-models").delete_bot
method.
boto3 documentation
# delete_bot method definition
def delete_bot(
self,
*,
name: str,
) -> EmptyResponseMetadataTypeDef: # (1)
...
# delete_bot method usage example with argument unpacking
kwargs: DeleteBotRequestRequestTypeDef = { # (1)
"name": ...,
}
parent.delete_bot(**kwargs)
delete_bot_alias#
Deletes an alias for the specified bot.
Type annotations and code completion for boto3.client("lex-models").delete_bot_alias
method.
boto3 documentation
# delete_bot_alias method definition
def delete_bot_alias(
self,
*,
name: str,
botName: str,
) -> EmptyResponseMetadataTypeDef: # (1)
...
# delete_bot_alias method usage example with argument unpacking
kwargs: DeleteBotAliasRequestRequestTypeDef = { # (1)
"name": ...,
"botName": ...,
}
parent.delete_bot_alias(**kwargs)
delete_bot_channel_association#
Deletes the association between an Amazon Lex bot and a messaging platform.
Type annotations and code completion for boto3.client("lex-models").delete_bot_channel_association
method.
boto3 documentation
# delete_bot_channel_association method definition
def delete_bot_channel_association(
self,
*,
name: str,
botName: str,
botAlias: str,
) -> EmptyResponseMetadataTypeDef: # (1)
...
# delete_bot_channel_association method usage example with argument unpacking
kwargs: DeleteBotChannelAssociationRequestRequestTypeDef = { # (1)
"name": ...,
"botName": ...,
"botAlias": ...,
}
parent.delete_bot_channel_association(**kwargs)
delete_bot_version#
Deletes a specific version of a bot.
Type annotations and code completion for boto3.client("lex-models").delete_bot_version
method.
boto3 documentation
# delete_bot_version method definition
def delete_bot_version(
self,
*,
name: str,
version: str,
) -> EmptyResponseMetadataTypeDef: # (1)
...
# delete_bot_version method usage example with argument unpacking
kwargs: DeleteBotVersionRequestRequestTypeDef = { # (1)
"name": ...,
"version": ...,
}
parent.delete_bot_version(**kwargs)
delete_intent#
Deletes all versions of the intent, including the $LATEST
version.
Type annotations and code completion for boto3.client("lex-models").delete_intent
method.
boto3 documentation
# delete_intent method definition
def delete_intent(
self,
*,
name: str,
) -> EmptyResponseMetadataTypeDef: # (1)
...
# delete_intent method usage example with argument unpacking
kwargs: DeleteIntentRequestRequestTypeDef = { # (1)
"name": ...,
}
parent.delete_intent(**kwargs)
delete_intent_version#
Deletes a specific version of an intent.
Type annotations and code completion for boto3.client("lex-models").delete_intent_version
method.
boto3 documentation
# delete_intent_version method definition
def delete_intent_version(
self,
*,
name: str,
version: str,
) -> EmptyResponseMetadataTypeDef: # (1)
...
# delete_intent_version method usage example with argument unpacking
kwargs: DeleteIntentVersionRequestRequestTypeDef = { # (1)
"name": ...,
"version": ...,
}
parent.delete_intent_version(**kwargs)
delete_slot_type#
Deletes all versions of the slot type, including the $LATEST
version.
Type annotations and code completion for boto3.client("lex-models").delete_slot_type
method.
boto3 documentation
# delete_slot_type method definition
def delete_slot_type(
self,
*,
name: str,
) -> EmptyResponseMetadataTypeDef: # (1)
...
# delete_slot_type method usage example with argument unpacking
kwargs: DeleteSlotTypeRequestRequestTypeDef = { # (1)
"name": ...,
}
parent.delete_slot_type(**kwargs)
delete_slot_type_version#
Deletes a specific version of a slot type.
Type annotations and code completion for boto3.client("lex-models").delete_slot_type_version
method.
boto3 documentation
# delete_slot_type_version method definition
def delete_slot_type_version(
self,
*,
name: str,
version: str,
) -> EmptyResponseMetadataTypeDef: # (1)
...
# delete_slot_type_version method usage example with argument unpacking
kwargs: DeleteSlotTypeVersionRequestRequestTypeDef = { # (1)
"name": ...,
"version": ...,
}
parent.delete_slot_type_version(**kwargs)
delete_utterances#
Deletes stored utterances.
Type annotations and code completion for boto3.client("lex-models").delete_utterances
method.
boto3 documentation
# delete_utterances method definition
def delete_utterances(
self,
*,
botName: str,
userId: str,
) -> EmptyResponseMetadataTypeDef: # (1)
...
# delete_utterances method usage example with argument unpacking
kwargs: DeleteUtterancesRequestRequestTypeDef = { # (1)
"botName": ...,
"userId": ...,
}
parent.delete_utterances(**kwargs)
generate_presigned_url#
Generate a presigned url given a client, its method, and arguments.
Type annotations and code completion for boto3.client("lex-models").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_bot#
Returns metadata information for a specific bot.
Type annotations and code completion for boto3.client("lex-models").get_bot
method.
boto3 documentation
# get_bot method definition
def get_bot(
self,
*,
name: str,
versionOrAlias: str,
) -> GetBotResponseTypeDef: # (1)
...
# get_bot method usage example with argument unpacking
kwargs: GetBotRequestRequestTypeDef = { # (1)
"name": ...,
"versionOrAlias": ...,
}
parent.get_bot(**kwargs)
get_bot_alias#
Returns information about an Amazon Lex bot alias.
Type annotations and code completion for boto3.client("lex-models").get_bot_alias
method.
boto3 documentation
# get_bot_alias method definition
def get_bot_alias(
self,
*,
name: str,
botName: str,
) -> GetBotAliasResponseTypeDef: # (1)
...
# get_bot_alias method usage example with argument unpacking
kwargs: GetBotAliasRequestRequestTypeDef = { # (1)
"name": ...,
"botName": ...,
}
parent.get_bot_alias(**kwargs)
get_bot_aliases#
Returns a list of aliases for a specified Amazon Lex bot.
Type annotations and code completion for boto3.client("lex-models").get_bot_aliases
method.
boto3 documentation
# get_bot_aliases method definition
def get_bot_aliases(
self,
*,
botName: str,
nextToken: str = ...,
maxResults: int = ...,
nameContains: str = ...,
) -> GetBotAliasesResponseTypeDef: # (1)
...
# get_bot_aliases method usage example with argument unpacking
kwargs: GetBotAliasesRequestRequestTypeDef = { # (1)
"botName": ...,
}
parent.get_bot_aliases(**kwargs)
get_bot_channel_association#
Returns information about the association between an Amazon Lex bot and a messaging platform.
Type annotations and code completion for boto3.client("lex-models").get_bot_channel_association
method.
boto3 documentation
# get_bot_channel_association method definition
def get_bot_channel_association(
self,
*,
name: str,
botName: str,
botAlias: str,
) -> GetBotChannelAssociationResponseTypeDef: # (1)
...
# get_bot_channel_association method usage example with argument unpacking
kwargs: GetBotChannelAssociationRequestRequestTypeDef = { # (1)
"name": ...,
"botName": ...,
"botAlias": ...,
}
parent.get_bot_channel_association(**kwargs)
get_bot_channel_associations#
Returns a list of all of the channels associated with the specified bot.
Type annotations and code completion for boto3.client("lex-models").get_bot_channel_associations
method.
boto3 documentation
# get_bot_channel_associations method definition
def get_bot_channel_associations(
self,
*,
botName: str,
botAlias: str,
nextToken: str = ...,
maxResults: int = ...,
nameContains: str = ...,
) -> GetBotChannelAssociationsResponseTypeDef: # (1)
...
# get_bot_channel_associations method usage example with argument unpacking
kwargs: GetBotChannelAssociationsRequestRequestTypeDef = { # (1)
"botName": ...,
"botAlias": ...,
}
parent.get_bot_channel_associations(**kwargs)
get_bot_versions#
Gets information about all of the versions of a bot.
Type annotations and code completion for boto3.client("lex-models").get_bot_versions
method.
boto3 documentation
# get_bot_versions method definition
def get_bot_versions(
self,
*,
name: str,
nextToken: str = ...,
maxResults: int = ...,
) -> GetBotVersionsResponseTypeDef: # (1)
...
# get_bot_versions method usage example with argument unpacking
kwargs: GetBotVersionsRequestRequestTypeDef = { # (1)
"name": ...,
}
parent.get_bot_versions(**kwargs)
get_bots#
Returns bot information as follows: * If you provide the nameContains
field,
the response includes information for the $LATEST
version of all bots whose
name contains the specified string.
Type annotations and code completion for boto3.client("lex-models").get_bots
method.
boto3 documentation
# get_bots method definition
def get_bots(
self,
*,
nextToken: str = ...,
maxResults: int = ...,
nameContains: str = ...,
) -> GetBotsResponseTypeDef: # (1)
...
# get_bots method usage example with argument unpacking
kwargs: GetBotsRequestRequestTypeDef = { # (1)
"nextToken": ...,
}
parent.get_bots(**kwargs)
get_builtin_intent#
Returns information about a built-in intent.
Type annotations and code completion for boto3.client("lex-models").get_builtin_intent
method.
boto3 documentation
# get_builtin_intent method definition
def get_builtin_intent(
self,
*,
signature: str,
) -> GetBuiltinIntentResponseTypeDef: # (1)
...
# get_builtin_intent method usage example with argument unpacking
kwargs: GetBuiltinIntentRequestRequestTypeDef = { # (1)
"signature": ...,
}
parent.get_builtin_intent(**kwargs)
get_builtin_intents#
Gets a list of built-in intents that meet the specified criteria.
Type annotations and code completion for boto3.client("lex-models").get_builtin_intents
method.
boto3 documentation
# get_builtin_intents method definition
def get_builtin_intents(
self,
*,
locale: LocaleType = ..., # (1)
signatureContains: str = ...,
nextToken: str = ...,
maxResults: int = ...,
) -> GetBuiltinIntentsResponseTypeDef: # (2)
...
# get_builtin_intents method usage example with argument unpacking
kwargs: GetBuiltinIntentsRequestRequestTypeDef = { # (1)
"locale": ...,
}
parent.get_builtin_intents(**kwargs)
get_builtin_slot_types#
Gets a list of built-in slot types that meet the specified criteria.
Type annotations and code completion for boto3.client("lex-models").get_builtin_slot_types
method.
boto3 documentation
# get_builtin_slot_types method definition
def get_builtin_slot_types(
self,
*,
locale: LocaleType = ..., # (1)
signatureContains: str = ...,
nextToken: str = ...,
maxResults: int = ...,
) -> GetBuiltinSlotTypesResponseTypeDef: # (2)
...
# get_builtin_slot_types method usage example with argument unpacking
kwargs: GetBuiltinSlotTypesRequestRequestTypeDef = { # (1)
"locale": ...,
}
parent.get_builtin_slot_types(**kwargs)
get_export#
Exports the contents of a Amazon Lex resource in a specified format.
Type annotations and code completion for boto3.client("lex-models").get_export
method.
boto3 documentation
# get_export method definition
def get_export(
self,
*,
name: str,
version: str,
resourceType: ResourceTypeType, # (1)
exportType: ExportTypeType, # (2)
) -> GetExportResponseTypeDef: # (3)
...
- See ResourceTypeType
- See ExportTypeType
- See GetExportResponseTypeDef
# get_export method usage example with argument unpacking
kwargs: GetExportRequestRequestTypeDef = { # (1)
"name": ...,
"version": ...,
"resourceType": ...,
"exportType": ...,
}
parent.get_export(**kwargs)
get_import#
Gets information about an import job started with the StartImport
operation.
Type annotations and code completion for boto3.client("lex-models").get_import
method.
boto3 documentation
# get_import method definition
def get_import(
self,
*,
importId: str,
) -> GetImportResponseTypeDef: # (1)
...
# get_import method usage example with argument unpacking
kwargs: GetImportRequestRequestTypeDef = { # (1)
"importId": ...,
}
parent.get_import(**kwargs)
get_intent#
Returns information about an intent.
Type annotations and code completion for boto3.client("lex-models").get_intent
method.
boto3 documentation
# get_intent method definition
def get_intent(
self,
*,
name: str,
version: str,
) -> GetIntentResponseTypeDef: # (1)
...
# get_intent method usage example with argument unpacking
kwargs: GetIntentRequestRequestTypeDef = { # (1)
"name": ...,
"version": ...,
}
parent.get_intent(**kwargs)
get_intent_versions#
Gets information about all of the versions of an intent.
Type annotations and code completion for boto3.client("lex-models").get_intent_versions
method.
boto3 documentation
# get_intent_versions method definition
def get_intent_versions(
self,
*,
name: str,
nextToken: str = ...,
maxResults: int = ...,
) -> GetIntentVersionsResponseTypeDef: # (1)
...
# get_intent_versions method usage example with argument unpacking
kwargs: GetIntentVersionsRequestRequestTypeDef = { # (1)
"name": ...,
}
parent.get_intent_versions(**kwargs)
get_intents#
Returns intent information as follows: * If you specify the nameContains
field, returns the $LATEST
version of all intents that contain the specified
string.
Type annotations and code completion for boto3.client("lex-models").get_intents
method.
boto3 documentation
# get_intents method definition
def get_intents(
self,
*,
nextToken: str = ...,
maxResults: int = ...,
nameContains: str = ...,
) -> GetIntentsResponseTypeDef: # (1)
...
# get_intents method usage example with argument unpacking
kwargs: GetIntentsRequestRequestTypeDef = { # (1)
"nextToken": ...,
}
parent.get_intents(**kwargs)
get_migration#
Provides details about an ongoing or complete migration from an Amazon Lex V1 bot to an Amazon Lex V2 bot.
Type annotations and code completion for boto3.client("lex-models").get_migration
method.
boto3 documentation
# get_migration method definition
def get_migration(
self,
*,
migrationId: str,
) -> GetMigrationResponseTypeDef: # (1)
...
# get_migration method usage example with argument unpacking
kwargs: GetMigrationRequestRequestTypeDef = { # (1)
"migrationId": ...,
}
parent.get_migration(**kwargs)
get_migrations#
Gets a list of migrations between Amazon Lex V1 and Amazon Lex V2.
Type annotations and code completion for boto3.client("lex-models").get_migrations
method.
boto3 documentation
# get_migrations method definition
def get_migrations(
self,
*,
sortByAttribute: MigrationSortAttributeType = ..., # (1)
sortByOrder: SortOrderType = ..., # (2)
v1BotNameContains: str = ...,
migrationStatusEquals: MigrationStatusType = ..., # (3)
maxResults: int = ...,
nextToken: str = ...,
) -> GetMigrationsResponseTypeDef: # (4)
...
- See MigrationSortAttributeType
- See SortOrderType
- See MigrationStatusType
- See GetMigrationsResponseTypeDef
# get_migrations method usage example with argument unpacking
kwargs: GetMigrationsRequestRequestTypeDef = { # (1)
"sortByAttribute": ...,
}
parent.get_migrations(**kwargs)
get_slot_type#
Returns information about a specific version of a slot type.
Type annotations and code completion for boto3.client("lex-models").get_slot_type
method.
boto3 documentation
# get_slot_type method definition
def get_slot_type(
self,
*,
name: str,
version: str,
) -> GetSlotTypeResponseTypeDef: # (1)
...
# get_slot_type method usage example with argument unpacking
kwargs: GetSlotTypeRequestRequestTypeDef = { # (1)
"name": ...,
"version": ...,
}
parent.get_slot_type(**kwargs)
get_slot_type_versions#
Gets information about all versions of a slot type.
Type annotations and code completion for boto3.client("lex-models").get_slot_type_versions
method.
boto3 documentation
# get_slot_type_versions method definition
def get_slot_type_versions(
self,
*,
name: str,
nextToken: str = ...,
maxResults: int = ...,
) -> GetSlotTypeVersionsResponseTypeDef: # (1)
...
# get_slot_type_versions method usage example with argument unpacking
kwargs: GetSlotTypeVersionsRequestRequestTypeDef = { # (1)
"name": ...,
}
parent.get_slot_type_versions(**kwargs)
get_slot_types#
Returns slot type information as follows: * If you specify the nameContains
field, returns the $LATEST
version of all slot types that contain the
specified string.
Type annotations and code completion for boto3.client("lex-models").get_slot_types
method.
boto3 documentation
# get_slot_types method definition
def get_slot_types(
self,
*,
nextToken: str = ...,
maxResults: int = ...,
nameContains: str = ...,
) -> GetSlotTypesResponseTypeDef: # (1)
...
# get_slot_types method usage example with argument unpacking
kwargs: GetSlotTypesRequestRequestTypeDef = { # (1)
"nextToken": ...,
}
parent.get_slot_types(**kwargs)
get_utterances_view#
Use the GetUtterancesView
operation to get information about the utterances
that your users have made to your bot.
Type annotations and code completion for boto3.client("lex-models").get_utterances_view
method.
boto3 documentation
# get_utterances_view method definition
def get_utterances_view(
self,
*,
botName: str,
botVersions: Sequence[str],
statusType: StatusTypeType, # (1)
) -> GetUtterancesViewResponseTypeDef: # (2)
...
# get_utterances_view method usage example with argument unpacking
kwargs: GetUtterancesViewRequestRequestTypeDef = { # (1)
"botName": ...,
"botVersions": ...,
"statusType": ...,
}
parent.get_utterances_view(**kwargs)
list_tags_for_resource#
Gets a list of tags associated with the specified resource.
Type annotations and code completion for boto3.client("lex-models").list_tags_for_resource
method.
boto3 documentation
# list_tags_for_resource method definition
def list_tags_for_resource(
self,
*,
resourceArn: str,
) -> ListTagsForResourceResponseTypeDef: # (1)
...
# list_tags_for_resource method usage example with argument unpacking
kwargs: ListTagsForResourceRequestRequestTypeDef = { # (1)
"resourceArn": ...,
}
parent.list_tags_for_resource(**kwargs)
put_bot#
Creates an Amazon Lex conversational bot or replaces an existing bot.
Type annotations and code completion for boto3.client("lex-models").put_bot
method.
boto3 documentation
# put_bot method definition
def put_bot(
self,
*,
name: str,
locale: LocaleType, # (1)
childDirected: bool,
description: str = ...,
intents: Sequence[IntentTypeDef] = ..., # (2)
enableModelImprovements: bool = ...,
nluIntentConfidenceThreshold: float = ...,
clarificationPrompt: PromptTypeDef = ..., # (3)
abortStatement: StatementTypeDef = ..., # (4)
idleSessionTTLInSeconds: int = ...,
voiceId: str = ...,
checksum: str = ...,
processBehavior: ProcessBehaviorType = ..., # (5)
detectSentiment: bool = ...,
createVersion: bool = ...,
tags: Sequence[TagTypeDef] = ..., # (6)
) -> PutBotResponseTypeDef: # (7)
...
- See LocaleType
- See IntentTypeDef
- See PromptTypeDef
- See StatementTypeDef
- See ProcessBehaviorType
- See TagTypeDef
- See PutBotResponseTypeDef
# put_bot method usage example with argument unpacking
kwargs: PutBotRequestRequestTypeDef = { # (1)
"name": ...,
"locale": ...,
"childDirected": ...,
}
parent.put_bot(**kwargs)
put_bot_alias#
Creates an alias for the specified version of the bot or replaces an alias for the specified bot.
Type annotations and code completion for boto3.client("lex-models").put_bot_alias
method.
boto3 documentation
# put_bot_alias method definition
def put_bot_alias(
self,
*,
name: str,
botVersion: str,
botName: str,
description: str = ...,
checksum: str = ...,
conversationLogs: ConversationLogsRequestTypeDef = ..., # (1)
tags: Sequence[TagTypeDef] = ..., # (2)
) -> PutBotAliasResponseTypeDef: # (3)
...
# put_bot_alias method usage example with argument unpacking
kwargs: PutBotAliasRequestRequestTypeDef = { # (1)
"name": ...,
"botVersion": ...,
"botName": ...,
}
parent.put_bot_alias(**kwargs)
put_intent#
Creates an intent or replaces an existing intent.
Type annotations and code completion for boto3.client("lex-models").put_intent
method.
boto3 documentation
# put_intent method definition
def put_intent(
self,
*,
name: str,
description: str = ...,
slots: Sequence[SlotUnionTypeDef] = ..., # (1)
sampleUtterances: Sequence[str] = ...,
confirmationPrompt: PromptTypeDef = ..., # (2)
rejectionStatement: StatementTypeDef = ..., # (3)
followUpPrompt: FollowUpPromptTypeDef = ..., # (4)
conclusionStatement: StatementTypeDef = ..., # (3)
dialogCodeHook: CodeHookTypeDef = ..., # (6)
fulfillmentActivity: FulfillmentActivityTypeDef = ..., # (7)
parentIntentSignature: str = ...,
checksum: str = ...,
createVersion: bool = ...,
kendraConfiguration: KendraConfigurationTypeDef = ..., # (8)
inputContexts: Sequence[InputContextTypeDef] = ..., # (9)
outputContexts: Sequence[OutputContextTypeDef] = ..., # (10)
) -> PutIntentResponseTypeDef: # (11)
...
- See SlotTypeDef SlotOutputTypeDef
- See PromptTypeDef
- See StatementTypeDef
- See FollowUpPromptTypeDef
- See StatementTypeDef
- See CodeHookTypeDef
- See FulfillmentActivityTypeDef
- See KendraConfigurationTypeDef
- See InputContextTypeDef
- See OutputContextTypeDef
- See PutIntentResponseTypeDef
# put_intent method usage example with argument unpacking
kwargs: PutIntentRequestRequestTypeDef = { # (1)
"name": ...,
}
parent.put_intent(**kwargs)
put_slot_type#
Creates a custom slot type or replaces an existing custom slot type.
Type annotations and code completion for boto3.client("lex-models").put_slot_type
method.
boto3 documentation
# put_slot_type method definition
def put_slot_type(
self,
*,
name: str,
description: str = ...,
enumerationValues: Sequence[EnumerationValueUnionTypeDef] = ..., # (1)
checksum: str = ...,
valueSelectionStrategy: SlotValueSelectionStrategyType = ..., # (2)
createVersion: bool = ...,
parentSlotTypeSignature: str = ...,
slotTypeConfigurations: Sequence[SlotTypeConfigurationTypeDef] = ..., # (3)
) -> PutSlotTypeResponseTypeDef: # (4)
...
- See EnumerationValueTypeDef EnumerationValueOutputTypeDef
- See SlotValueSelectionStrategyType
- See SlotTypeConfigurationTypeDef
- See PutSlotTypeResponseTypeDef
# put_slot_type method usage example with argument unpacking
kwargs: PutSlotTypeRequestRequestTypeDef = { # (1)
"name": ...,
}
parent.put_slot_type(**kwargs)
start_import#
Starts a job to import a resource to Amazon Lex.
Type annotations and code completion for boto3.client("lex-models").start_import
method.
boto3 documentation
# start_import method definition
def start_import(
self,
*,
payload: BlobTypeDef,
resourceType: ResourceTypeType, # (1)
mergeStrategy: MergeStrategyType, # (2)
tags: Sequence[TagTypeDef] = ..., # (3)
) -> StartImportResponseTypeDef: # (4)
...
- See ResourceTypeType
- See MergeStrategyType
- See TagTypeDef
- See StartImportResponseTypeDef
# start_import method usage example with argument unpacking
kwargs: StartImportRequestRequestTypeDef = { # (1)
"payload": ...,
"resourceType": ...,
"mergeStrategy": ...,
}
parent.start_import(**kwargs)
start_migration#
Starts migrating a bot from Amazon Lex V1 to Amazon Lex V2.
Type annotations and code completion for boto3.client("lex-models").start_migration
method.
boto3 documentation
# start_migration method definition
def start_migration(
self,
*,
v1BotName: str,
v1BotVersion: str,
v2BotName: str,
v2BotRole: str,
migrationStrategy: MigrationStrategyType, # (1)
) -> StartMigrationResponseTypeDef: # (2)
...
# start_migration method usage example with argument unpacking
kwargs: StartMigrationRequestRequestTypeDef = { # (1)
"v1BotName": ...,
"v1BotVersion": ...,
"v2BotName": ...,
"v2BotRole": ...,
"migrationStrategy": ...,
}
parent.start_migration(**kwargs)
tag_resource#
Adds the specified tags to the specified resource.
Type annotations and code completion for boto3.client("lex-models").tag_resource
method.
boto3 documentation
# tag_resource method definition
def tag_resource(
self,
*,
resourceArn: str,
tags: Sequence[TagTypeDef], # (1)
) -> Dict[str, Any]:
...
- See TagTypeDef
# tag_resource method usage example with argument unpacking
kwargs: TagResourceRequestRequestTypeDef = { # (1)
"resourceArn": ...,
"tags": ...,
}
parent.tag_resource(**kwargs)
untag_resource#
Removes tags from a bot, bot alias or bot channel.
Type annotations and code completion for boto3.client("lex-models").untag_resource
method.
boto3 documentation
# untag_resource method definition
def untag_resource(
self,
*,
resourceArn: str,
tagKeys: Sequence[str],
) -> Dict[str, Any]:
...
# untag_resource method usage example with argument unpacking
kwargs: UntagResourceRequestRequestTypeDef = { # (1)
"resourceArn": ...,
"tagKeys": ...,
}
parent.untag_resource(**kwargs)
get_paginator#
Type annotations and code completion for boto3.client("lex-models").get_paginator
method with overloads.
client.get_paginator("get_bot_aliases")
-> GetBotAliasesPaginatorclient.get_paginator("get_bot_channel_associations")
-> GetBotChannelAssociationsPaginatorclient.get_paginator("get_bot_versions")
-> GetBotVersionsPaginatorclient.get_paginator("get_bots")
-> GetBotsPaginatorclient.get_paginator("get_builtin_intents")
-> GetBuiltinIntentsPaginatorclient.get_paginator("get_builtin_slot_types")
-> GetBuiltinSlotTypesPaginatorclient.get_paginator("get_intent_versions")
-> GetIntentVersionsPaginatorclient.get_paginator("get_intents")
-> GetIntentsPaginatorclient.get_paginator("get_slot_type_versions")
-> GetSlotTypeVersionsPaginatorclient.get_paginator("get_slot_types")
-> GetSlotTypesPaginator