Interface UtteranceData.Builder
-
- All Superinterfaces:
Buildable,CopyableBuilder<UtteranceData.Builder,UtteranceData>,SdkBuilder<UtteranceData.Builder,UtteranceData>,SdkPojo
- Enclosing class:
- UtteranceData
public static interface UtteranceData.Builder extends SdkPojo, CopyableBuilder<UtteranceData.Builder,UtteranceData>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description UtteranceData.Buildercount(Integer count)The number of times that the utterance was processed.UtteranceData.BuilderdistinctUsers(Integer distinctUsers)The total number of individuals that used the utterance.UtteranceData.BuilderfirstUtteredDate(Instant firstUtteredDate)The date that the utterance was first recorded.UtteranceData.BuilderlastUtteredDate(Instant lastUtteredDate)The date that the utterance was last recorded.UtteranceData.BuilderutteranceString(String utteranceString)The text that was entered by the user or the text representation of an audio clip.-
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
-
utteranceString
UtteranceData.Builder utteranceString(String utteranceString)
The text that was entered by the user or the text representation of an audio clip.
- Parameters:
utteranceString- The text that was entered by the user or the text representation of an audio clip.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
count
UtteranceData.Builder count(Integer count)
The number of times that the utterance was processed.
- Parameters:
count- The number of times that the utterance was processed.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
distinctUsers
UtteranceData.Builder distinctUsers(Integer distinctUsers)
The total number of individuals that used the utterance.
- Parameters:
distinctUsers- The total number of individuals that used the utterance.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
firstUtteredDate
UtteranceData.Builder firstUtteredDate(Instant firstUtteredDate)
The date that the utterance was first recorded.
- Parameters:
firstUtteredDate- The date that the utterance was first recorded.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
lastUtteredDate
UtteranceData.Builder lastUtteredDate(Instant lastUtteredDate)
The date that the utterance was last recorded.
- Parameters:
lastUtteredDate- The date that the utterance was last recorded.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
-