Interface ListSlotsResponse.Builder
-
- All Superinterfaces:
AwsResponse.Builder,Buildable,CopyableBuilder<ListSlotsResponse.Builder,ListSlotsResponse>,LexModelsV2Response.Builder,SdkBuilder<ListSlotsResponse.Builder,ListSlotsResponse>,SdkPojo,SdkResponse.Builder
- Enclosing class:
- ListSlotsResponse
public static interface ListSlotsResponse.Builder extends LexModelsV2Response.Builder, SdkPojo, CopyableBuilder<ListSlotsResponse.Builder,ListSlotsResponse>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description ListSlotsResponse.BuilderbotId(String botId)The identifier of the bot that contains the slots.ListSlotsResponse.BuilderbotVersion(String botVersion)The version of the bot that contains the slots.ListSlotsResponse.BuilderintentId(String intentId)The identifier of the intent that contains the slots.ListSlotsResponse.BuilderlocaleId(String localeId)The language and locale of the slots in the list.ListSlotsResponse.BuildernextToken(String nextToken)A token that indicates whether there are more results to return in a response to theListSlotsoperation.ListSlotsResponse.BuilderslotSummaries(Collection<SlotSummary> slotSummaries)Summary information for the slots that meet the filter criteria specified in the request.ListSlotsResponse.BuilderslotSummaries(Consumer<SlotSummary.Builder>... slotSummaries)Summary information for the slots that meet the filter criteria specified in the request.ListSlotsResponse.BuilderslotSummaries(SlotSummary... slotSummaries)Summary information for the slots that meet the filter criteria specified in the request.-
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
ListSlotsResponse.Builder botId(String botId)
The identifier of the bot that contains the slots.
- Parameters:
botId- The identifier of the bot that contains the slots.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
botVersion
ListSlotsResponse.Builder botVersion(String botVersion)
The version of the bot that contains the slots.
- Parameters:
botVersion- The version of the bot that contains the slots.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
localeId
ListSlotsResponse.Builder localeId(String localeId)
The language and locale of the slots in the list.
- Parameters:
localeId- The language and locale of the slots in the list.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
intentId
ListSlotsResponse.Builder intentId(String intentId)
The identifier of the intent that contains the slots.
- Parameters:
intentId- The identifier of the intent that contains the slots.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
slotSummaries
ListSlotsResponse.Builder slotSummaries(Collection<SlotSummary> slotSummaries)
Summary information for the slots that meet the filter criteria specified in the request. The length of the list is specified in the
maxResultsparameter of the request. If there are more slots available, thenextTokenfield contains a token to get the next page of results.- Parameters:
slotSummaries- Summary information for the slots that meet the filter criteria specified in the request. The length of the list is specified in themaxResultsparameter of the request. If there are more slots available, thenextTokenfield contains a token to get the next page of results.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
slotSummaries
ListSlotsResponse.Builder slotSummaries(SlotSummary... slotSummaries)
Summary information for the slots that meet the filter criteria specified in the request. The length of the list is specified in the
maxResultsparameter of the request. If there are more slots available, thenextTokenfield contains a token to get the next page of results.- Parameters:
slotSummaries- Summary information for the slots that meet the filter criteria specified in the request. The length of the list is specified in themaxResultsparameter of the request. If there are more slots available, thenextTokenfield contains a token to get the next page of results.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
slotSummaries
ListSlotsResponse.Builder slotSummaries(Consumer<SlotSummary.Builder>... slotSummaries)
Summary information for the slots that meet the filter criteria specified in the request. The length of the list is specified in the
This is a convenience method that creates an instance of themaxResultsparameter of the request. If there are more slots available, thenextTokenfield contains a token to get the next page of results.SlotSummary.Builderavoiding the need to create one manually viaSlotSummary.builder().When the
Consumercompletes,SdkBuilder.build()is called immediately and its result is passed to#slotSummaries(List.) - Parameters:
slotSummaries- a consumer that will call methods onSlotSummary.Builder- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
#slotSummaries(java.util.Collection)
-
nextToken
ListSlotsResponse.Builder nextToken(String nextToken)
A token that indicates whether there are more results to return in a response to the
ListSlotsoperation. If thenextTokenfield is present, you send the contents as thenextTokenparameter of aListSlotsoperation request to get the next page of results.- Parameters:
nextToken- A token that indicates whether there are more results to return in a response to theListSlotsoperation. If thenextTokenfield is present, you send the contents as thenextTokenparameter of aListSlotsoperation request to get the next page of results.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
-