Interface PutBotAliasResponse.Builder
-
- All Superinterfaces:
AwsResponse.Builder,Buildable,CopyableBuilder<PutBotAliasResponse.Builder,PutBotAliasResponse>,LexModelBuildingResponse.Builder,SdkBuilder<PutBotAliasResponse.Builder,PutBotAliasResponse>,SdkPojo,SdkResponse.Builder
- Enclosing class:
- PutBotAliasResponse
public static interface PutBotAliasResponse.Builder extends LexModelBuildingResponse.Builder, SdkPojo, CopyableBuilder<PutBotAliasResponse.Builder,PutBotAliasResponse>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Default Methods Modifier and Type Method Description PutBotAliasResponse.BuilderbotName(String botName)The name of the bot that the alias points to.PutBotAliasResponse.BuilderbotVersion(String botVersion)The version of the bot that the alias points to.PutBotAliasResponse.Builderchecksum(String checksum)The checksum for the current version of the alias.default PutBotAliasResponse.BuilderconversationLogs(Consumer<ConversationLogsResponse.Builder> conversationLogs)The settings that determine how Amazon Lex uses conversation logs for the alias.PutBotAliasResponse.BuilderconversationLogs(ConversationLogsResponse conversationLogs)The settings that determine how Amazon Lex uses conversation logs for the alias.PutBotAliasResponse.BuildercreatedDate(Instant createdDate)The date that the bot alias was created.PutBotAliasResponse.Builderdescription(String description)A description of the alias.PutBotAliasResponse.BuilderlastUpdatedDate(Instant lastUpdatedDate)The date that the bot alias was updated.PutBotAliasResponse.Buildername(String name)The name of the alias.PutBotAliasResponse.Buildertags(Collection<Tag> tags)A list of tags associated with a bot.PutBotAliasResponse.Buildertags(Consumer<Tag.Builder>... tags)A list of tags associated with a bot.PutBotAliasResponse.Buildertags(Tag... tags)A list of tags associated with a bot.-
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, sdkFieldNameToField, sdkFields
-
Methods inherited from interface software.amazon.awssdk.core.SdkResponse.Builder
sdkHttpResponse, sdkHttpResponse
-
-
-
-
Method Detail
-
name
PutBotAliasResponse.Builder name(String name)
The name of the alias.
- Parameters:
name- The name of the alias.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
description
PutBotAliasResponse.Builder description(String description)
A description of the alias.
- Parameters:
description- A description of the alias.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
botVersion
PutBotAliasResponse.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
PutBotAliasResponse.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
PutBotAliasResponse.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
PutBotAliasResponse.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
PutBotAliasResponse.Builder checksum(String checksum)
The checksum for the current version of the alias.
- Parameters:
checksum- The checksum for the current version of the alias.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
conversationLogs
PutBotAliasResponse.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 PutBotAliasResponse.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)
-
tags
PutBotAliasResponse.Builder tags(Collection<Tag> tags)
A list of tags associated with a bot.
- Parameters:
tags- A list of tags associated with a bot.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
tags
PutBotAliasResponse.Builder tags(Tag... tags)
A list of tags associated with a bot.
- Parameters:
tags- A list of tags associated with a bot.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
tags
PutBotAliasResponse.Builder tags(Consumer<Tag.Builder>... tags)
A list of tags associated with a bot.
This is a convenience method that creates an instance of theTag.Builderavoiding the need to create one manually viaTag.builder().When the
Consumercompletes,SdkBuilder.build()is called immediately and its result is passed to#tags(List.) - Parameters:
tags- a consumer that will call methods onTag.Builder- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
#tags(java.util.Collection)
-
-