Interface ListBotReplicasResponse.Builder
-
- All Superinterfaces:
AwsResponse.Builder,Buildable,CopyableBuilder<ListBotReplicasResponse.Builder,ListBotReplicasResponse>,LexModelsV2Response.Builder,SdkBuilder<ListBotReplicasResponse.Builder,ListBotReplicasResponse>,SdkPojo,SdkResponse.Builder
- Enclosing class:
- ListBotReplicasResponse
public static interface ListBotReplicasResponse.Builder extends LexModelsV2Response.Builder, SdkPojo, CopyableBuilder<ListBotReplicasResponse.Builder,ListBotReplicasResponse>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description ListBotReplicasResponse.BuilderbotId(String botId)the unique bot IDs in the list of replicated bots.ListBotReplicasResponse.BuilderbotReplicaSummaries(Collection<BotReplicaSummary> botReplicaSummaries)The summary details for the replicated bots.ListBotReplicasResponse.BuilderbotReplicaSummaries(Consumer<BotReplicaSummary.Builder>... botReplicaSummaries)The summary details for the replicated bots.ListBotReplicasResponse.BuilderbotReplicaSummaries(BotReplicaSummary... botReplicaSummaries)The summary details for the replicated bots.ListBotReplicasResponse.BuildersourceRegion(String sourceRegion)The source region of the source bots in the list of replicated bots.-
Methods inherited from interface software.amazon.awssdk.utils.builder.CopyableBuilder
copy
-
Methods inherited from interface software.amazon.awssdk.services.lexmodelsv2.model.LexModelsV2Response.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
-
botId
ListBotReplicasResponse.Builder botId(String botId)
the unique bot IDs in the list of replicated bots.
- Parameters:
botId- the unique bot IDs in the list of replicated bots.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
sourceRegion
ListBotReplicasResponse.Builder sourceRegion(String sourceRegion)
The source region of the source bots in the list of replicated bots.
- Parameters:
sourceRegion- The source region of the source bots in the list of replicated bots.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
botReplicaSummaries
ListBotReplicasResponse.Builder botReplicaSummaries(Collection<BotReplicaSummary> botReplicaSummaries)
The summary details for the replicated bots.
- Parameters:
botReplicaSummaries- The summary details for the replicated bots.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
botReplicaSummaries
ListBotReplicasResponse.Builder botReplicaSummaries(BotReplicaSummary... botReplicaSummaries)
The summary details for the replicated bots.
- Parameters:
botReplicaSummaries- The summary details for the replicated bots.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
botReplicaSummaries
ListBotReplicasResponse.Builder botReplicaSummaries(Consumer<BotReplicaSummary.Builder>... botReplicaSummaries)
The summary details for the replicated bots.
This is a convenience method that creates an instance of theBotReplicaSummary.Builderavoiding the need to create one manually viaBotReplicaSummary.builder().When the
Consumercompletes,SdkBuilder.build()is called immediately and its result is passed to#botReplicaSummaries(List.) - Parameters:
botReplicaSummaries- a consumer that will call methods onBotReplicaSummary.Builder- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
#botReplicaSummaries(java.util.Collection)
-
-