Interface BotSummary.Builder
-
- All Superinterfaces:
Buildable,CopyableBuilder<BotSummary.Builder,BotSummary>,SdkBuilder<BotSummary.Builder,BotSummary>,SdkPojo
- Enclosing class:
- BotSummary
public static interface BotSummary.Builder extends SdkPojo, CopyableBuilder<BotSummary.Builder,BotSummary>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description BotSummary.BuilderbotId(String botId)The unique identifier assigned to the bot.BotSummary.BuilderbotName(String botName)The name of the bot.BotSummary.BuilderbotStatus(String botStatus)The current status of the bot.BotSummary.BuilderbotStatus(BotStatus botStatus)The current status of the bot.BotSummary.BuilderbotType(String botType)The type of the bot.BotSummary.BuilderbotType(BotType botType)The type of the bot.BotSummary.Builderdescription(String description)The description of the bot.BotSummary.BuilderlastUpdatedDateTime(Instant lastUpdatedDateTime)The date and time that the bot was last updated.BotSummary.BuilderlatestBotVersion(String latestBotVersion)The latest numerical version in use for the bot.-
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
-
botId
BotSummary.Builder botId(String botId)
The unique identifier assigned to the bot. Use this ID to get detailed information about the bot with the DescribeBot operation.
- Parameters:
botId- The unique identifier assigned to the bot. Use this ID to get detailed information about the bot with the DescribeBot operation.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
botName
BotSummary.Builder botName(String botName)
The name of the bot.
- Parameters:
botName- The name of the bot.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
description
BotSummary.Builder description(String description)
The description of the bot.
- Parameters:
description- The description of the bot.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
botStatus
BotSummary.Builder botStatus(String botStatus)
The current status of the bot. When the status is
Availablethe bot is ready for use.
-
botStatus
BotSummary.Builder botStatus(BotStatus botStatus)
The current status of the bot. When the status is
Availablethe bot is ready for use.
-
latestBotVersion
BotSummary.Builder latestBotVersion(String latestBotVersion)
The latest numerical version in use for the bot.
- Parameters:
latestBotVersion- The latest numerical version in use for the bot.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
lastUpdatedDateTime
BotSummary.Builder lastUpdatedDateTime(Instant lastUpdatedDateTime)
The date and time that the bot was last updated.
- Parameters:
lastUpdatedDateTime- The date and time that the bot was last updated.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
botType
BotSummary.Builder botType(String botType)
The type of the bot.
-
botType
BotSummary.Builder botType(BotType botType)
The type of the bot.
-
-