Interface GetBotAliasResponse.Builder
-
- All Superinterfaces:
AwsResponse.Builder,Buildable,CopyableBuilder<GetBotAliasResponse.Builder,GetBotAliasResponse>,LexModelBuildingResponse.Builder,SdkBuilder<GetBotAliasResponse.Builder,GetBotAliasResponse>,SdkPojo,SdkResponse.Builder
- Enclosing class:
- GetBotAliasResponse
public static interface GetBotAliasResponse.Builder extends LexModelBuildingResponse.Builder, SdkPojo, CopyableBuilder<GetBotAliasResponse.Builder,GetBotAliasResponse>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Default Methods Modifier and Type Method Description GetBotAliasResponse.BuilderbotName(String botName)The name of the bot that the alias points to.GetBotAliasResponse.BuilderbotVersion(String botVersion)The version of the bot that the alias points to.GetBotAliasResponse.Builderchecksum(String checksum)Checksum of the bot alias.default GetBotAliasResponse.BuilderconversationLogs(Consumer<ConversationLogsResponse.Builder> conversationLogs)The settings that determine how Amazon Lex uses conversation logs for the alias.GetBotAliasResponse.BuilderconversationLogs(ConversationLogsResponse conversationLogs)The settings that determine how Amazon Lex uses conversation logs for the alias.GetBotAliasResponse.BuildercreatedDate(Instant createdDate)The date that the bot alias was created.GetBotAliasResponse.Builderdescription(String description)A description of the bot alias.GetBotAliasResponse.BuilderlastUpdatedDate(Instant lastUpdatedDate)The date that the bot alias was updated.GetBotAliasResponse.Buildername(String name)The name of the bot alias.-
Methods inherited from interface software.amazon.awssdk.utils.builder.CopyableBuilder
copy
-
Methods inherited from interface software.amazon.awssdk.services.lexmodelbuilding.model.LexModelBuildingResponse.Builder
build, responseMetadata, responseMetadata
-
Methods inherited from interface software.amazon.awssdk.utils.builder.SdkBuilder
applyMutation, build
-
Methods inherited from interface software.amazon.awssdk.core.SdkPojo
equalsBySdkFields, sdkFields
-
Methods inherited from interface software.amazon.awssdk.core.SdkResponse.Builder
sdkHttpResponse, sdkHttpResponse
-
-
-
-
Method Detail
-
name
GetBotAliasResponse.Builder name(String name)
The name of the bot alias.
- Parameters:
name- The name of the bot alias.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
description
GetBotAliasResponse.Builder description(String description)
A description of the bot alias.
- Parameters:
description- A description of the bot alias.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
botVersion
GetBotAliasResponse.Builder botVersion(String botVersion)
The version of the bot that the alias points to.
- Parameters:
botVersion- The version of the bot that the alias points to.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
botName
GetBotAliasResponse.Builder botName(String botName)
The name of the bot that the alias points to.
- Parameters:
botName- The name of the bot that the alias points to.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
lastUpdatedDate
GetBotAliasResponse.Builder lastUpdatedDate(Instant lastUpdatedDate)
The date that the bot alias was updated. When you create a resource, the creation date and the last updated date are the same.
- Parameters:
lastUpdatedDate- The date that the bot alias was updated. When you create a resource, the creation date and the last updated date are the same.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
createdDate
GetBotAliasResponse.Builder createdDate(Instant createdDate)
The date that the bot alias was created.
- Parameters:
createdDate- The date that the bot alias was created.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
checksum
GetBotAliasResponse.Builder checksum(String checksum)
Checksum of the bot alias.
- Parameters:
checksum- Checksum of the bot alias.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
conversationLogs
GetBotAliasResponse.Builder conversationLogs(ConversationLogsResponse conversationLogs)
The settings that determine how Amazon Lex uses conversation logs for the alias.
- Parameters:
conversationLogs- The settings that determine how Amazon Lex uses conversation logs for the alias.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
conversationLogs
default GetBotAliasResponse.Builder conversationLogs(Consumer<ConversationLogsResponse.Builder> conversationLogs)
The settings that determine how Amazon Lex uses conversation logs for the alias.
This is a convenience method that creates an instance of theConversationLogsResponse.Builderavoiding the need to create one manually viaConversationLogsResponse.builder().When the
Consumercompletes,SdkBuilder.build()is called immediately and its result is passed toconversationLogs(ConversationLogsResponse).- Parameters:
conversationLogs- a consumer that will call methods onConversationLogsResponse.Builder- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
conversationLogs(ConversationLogsResponse)
-
-