Interface BotVersionSummary.Builder
-
- All Superinterfaces:
Buildable,CopyableBuilder<BotVersionSummary.Builder,BotVersionSummary>,SdkBuilder<BotVersionSummary.Builder,BotVersionSummary>,SdkPojo
- Enclosing class:
- BotVersionSummary
public static interface BotVersionSummary.Builder extends SdkPojo, CopyableBuilder<BotVersionSummary.Builder,BotVersionSummary>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description BotVersionSummary.BuilderbotName(String botName)The name of the bot associated with the version.BotVersionSummary.BuilderbotStatus(String botStatus)The status of the bot.BotVersionSummary.BuilderbotStatus(BotStatus botStatus)The status of the bot.BotVersionSummary.BuilderbotVersion(String botVersion)The numeric version of the bot, orDRAFTto indicate that this is the version of the bot that can be updated..BotVersionSummary.BuildercreationDateTime(Instant creationDateTime)A timestamp of the date and time that the version was created.BotVersionSummary.Builderdescription(String description)The description of the version.-
Methods inherited from interface software.amazon.awssdk.utils.builder.CopyableBuilder
copy
-
Methods inherited from interface software.amazon.awssdk.utils.builder.SdkBuilder
applyMutation, build
-
Methods inherited from interface software.amazon.awssdk.core.SdkPojo
equalsBySdkFields, sdkFields
-
-
-
-
Method Detail
-
botName
BotVersionSummary.Builder botName(String botName)
The name of the bot associated with the version.
- Parameters:
botName- The name of the bot associated with the version.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
botVersion
BotVersionSummary.Builder botVersion(String botVersion)
The numeric version of the bot, or
DRAFTto indicate that this is the version of the bot that can be updated..- Parameters:
botVersion- The numeric version of the bot, orDRAFTto indicate that this is the version of the bot that can be updated..- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
description
BotVersionSummary.Builder description(String description)
The description of the version.
- Parameters:
description- The description of the version.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
botStatus
BotVersionSummary.Builder botStatus(String botStatus)
The status of the bot. When the status is available, the version of the bot is ready for use.
-
botStatus
BotVersionSummary.Builder botStatus(BotStatus botStatus)
The status of the bot. When the status is available, the version of the bot is ready for use.
-
creationDateTime
BotVersionSummary.Builder creationDateTime(Instant creationDateTime)
A timestamp of the date and time that the version was created.
- Parameters:
creationDateTime- A timestamp of the date and time that the version was created.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
-