Interface ListIntentPathsRequest.Builder
-
- All Superinterfaces:
AwsRequest.Builder,Buildable,CopyableBuilder<ListIntentPathsRequest.Builder,ListIntentPathsRequest>,LexModelsV2Request.Builder,SdkBuilder<ListIntentPathsRequest.Builder,ListIntentPathsRequest>,SdkPojo,SdkRequest.Builder
- Enclosing class:
- ListIntentPathsRequest
public static interface ListIntentPathsRequest.Builder extends LexModelsV2Request.Builder, SdkPojo, CopyableBuilder<ListIntentPathsRequest.Builder,ListIntentPathsRequest>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description ListIntentPathsRequest.BuilderbotId(String botId)The identifier for the bot for which you want to retrieve intent path metrics.ListIntentPathsRequest.BuilderendDateTime(Instant endDateTime)The date and time that marks the end of the range of time for which you want to see intent path metrics.ListIntentPathsRequest.Builderfilters(Collection<AnalyticsPathFilter> filters)A list of objects, each describes a condition by which you want to filter the results.ListIntentPathsRequest.Builderfilters(Consumer<AnalyticsPathFilter.Builder>... filters)A list of objects, each describes a condition by which you want to filter the results.ListIntentPathsRequest.Builderfilters(AnalyticsPathFilter... filters)A list of objects, each describes a condition by which you want to filter the results.ListIntentPathsRequest.BuilderintentPath(String intentPath)The intent path for which you want to retrieve metrics.ListIntentPathsRequest.BuilderoverrideConfiguration(Consumer<AwsRequestOverrideConfiguration.Builder> builderConsumer)ListIntentPathsRequest.BuilderoverrideConfiguration(AwsRequestOverrideConfiguration overrideConfiguration)ListIntentPathsRequest.BuilderstartDateTime(Instant startDateTime)The date and time that marks the beginning of the range of time for which you want to see intent path metrics.-
Methods inherited from interface software.amazon.awssdk.awscore.AwsRequest.Builder
overrideConfiguration
-
Methods inherited from interface software.amazon.awssdk.utils.builder.CopyableBuilder
copy
-
Methods inherited from interface software.amazon.awssdk.services.lexmodelsv2.model.LexModelsV2Request.Builder
build
-
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
ListIntentPathsRequest.Builder botId(String botId)
The identifier for the bot for which you want to retrieve intent path metrics.
- Parameters:
botId- The identifier for the bot for which you want to retrieve intent path metrics.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
startDateTime
ListIntentPathsRequest.Builder startDateTime(Instant startDateTime)
The date and time that marks the beginning of the range of time for which you want to see intent path metrics.
- Parameters:
startDateTime- The date and time that marks the beginning of the range of time for which you want to see intent path metrics.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
endDateTime
ListIntentPathsRequest.Builder endDateTime(Instant endDateTime)
The date and time that marks the end of the range of time for which you want to see intent path metrics.
- Parameters:
endDateTime- The date and time that marks the end of the range of time for which you want to see intent path metrics.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
intentPath
ListIntentPathsRequest.Builder intentPath(String intentPath)
The intent path for which you want to retrieve metrics. Use a forward slash to separate intents in the path. For example:
-
/BookCar
-
/BookCar/BookHotel
-
/BookHotel/BookCar
- Parameters:
intentPath- The intent path for which you want to retrieve metrics. Use a forward slash to separate intents in the path. For example:-
/BookCar
-
/BookCar/BookHotel
-
/BookHotel/BookCar
-
- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
-
filters
ListIntentPathsRequest.Builder filters(Collection<AnalyticsPathFilter> filters)
A list of objects, each describes a condition by which you want to filter the results.
- Parameters:
filters- A list of objects, each describes a condition by which you want to filter the results.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
filters
ListIntentPathsRequest.Builder filters(AnalyticsPathFilter... filters)
A list of objects, each describes a condition by which you want to filter the results.
- Parameters:
filters- A list of objects, each describes a condition by which you want to filter the results.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
filters
ListIntentPathsRequest.Builder filters(Consumer<AnalyticsPathFilter.Builder>... filters)
A list of objects, each describes a condition by which you want to filter the results.
This is a convenience method that creates an instance of theAnalyticsPathFilter.Builderavoiding the need to create one manually viaAnalyticsPathFilter.builder().When the
Consumercompletes,SdkBuilder.build()is called immediately and its result is passed to#filters(List.) - Parameters:
filters- a consumer that will call methods onAnalyticsPathFilter.Builder- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
#filters(java.util.Collection)
-
overrideConfiguration
ListIntentPathsRequest.Builder overrideConfiguration(AwsRequestOverrideConfiguration overrideConfiguration)
- Specified by:
overrideConfigurationin interfaceAwsRequest.Builder
-
overrideConfiguration
ListIntentPathsRequest.Builder overrideConfiguration(Consumer<AwsRequestOverrideConfiguration.Builder> builderConsumer)
- Specified by:
overrideConfigurationin interfaceAwsRequest.Builder
-
-