Interface AnalyticsIntentNodeSummary.Builder
-
- All Superinterfaces:
Buildable,CopyableBuilder<AnalyticsIntentNodeSummary.Builder,AnalyticsIntentNodeSummary>,SdkBuilder<AnalyticsIntentNodeSummary.Builder,AnalyticsIntentNodeSummary>,SdkPojo
- Enclosing class:
- AnalyticsIntentNodeSummary
public static interface AnalyticsIntentNodeSummary.Builder extends SdkPojo, CopyableBuilder<AnalyticsIntentNodeSummary.Builder,AnalyticsIntentNodeSummary>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description AnalyticsIntentNodeSummary.BuilderintentCount(Integer intentCount)The total number of sessions that follow the given path to the given intent.AnalyticsIntentNodeSummary.BuilderintentLevel(Integer intentLevel)The number of intents up to and including the requested path.AnalyticsIntentNodeSummary.BuilderintentName(String intentName)The name of the intent at the end of the requested path.AnalyticsIntentNodeSummary.BuilderintentPath(String intentPath)The path.AnalyticsIntentNodeSummary.BuildernodeType(String nodeType)Specifies whether the node is the end of a path (Exit) or not (Inner).AnalyticsIntentNodeSummary.BuildernodeType(AnalyticsNodeType nodeType)Specifies whether the node is the end of a path (Exit) or not (Inner).-
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
-
intentName
AnalyticsIntentNodeSummary.Builder intentName(String intentName)
The name of the intent at the end of the requested path.
- Parameters:
intentName- The name of the intent at the end of the requested path.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
intentPath
AnalyticsIntentNodeSummary.Builder intentPath(String intentPath)
The path.
- Parameters:
intentPath- The path.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
intentCount
AnalyticsIntentNodeSummary.Builder intentCount(Integer intentCount)
The total number of sessions that follow the given path to the given intent.
- Parameters:
intentCount- The total number of sessions that follow the given path to the given intent.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
intentLevel
AnalyticsIntentNodeSummary.Builder intentLevel(Integer intentLevel)
The number of intents up to and including the requested path.
- Parameters:
intentLevel- The number of intents up to and including the requested path.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
nodeType
AnalyticsIntentNodeSummary.Builder nodeType(String nodeType)
Specifies whether the node is the end of a path (
Exit) or not (Inner).- Parameters:
nodeType- Specifies whether the node is the end of a path (Exit) or not (Inner).- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
AnalyticsNodeType,AnalyticsNodeType
-
nodeType
AnalyticsIntentNodeSummary.Builder nodeType(AnalyticsNodeType nodeType)
Specifies whether the node is the end of a path (
Exit) or not (Inner).- Parameters:
nodeType- Specifies whether the node is the end of a path (Exit) or not (Inner).- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
AnalyticsNodeType,AnalyticsNodeType
-
-