Interface VoiceToneAnalysisTask.Builder
-
- All Superinterfaces:
Buildable,CopyableBuilder<VoiceToneAnalysisTask.Builder,VoiceToneAnalysisTask>,SdkBuilder<VoiceToneAnalysisTask.Builder,VoiceToneAnalysisTask>,SdkPojo
- Enclosing class:
- VoiceToneAnalysisTask
public static interface VoiceToneAnalysisTask.Builder extends SdkPojo, CopyableBuilder<VoiceToneAnalysisTask.Builder,VoiceToneAnalysisTask>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Default Methods Modifier and Type Method Description default VoiceToneAnalysisTask.BuildercallDetails(Consumer<CallDetails.Builder> callDetails)The call details of a voice tone analysis task.VoiceToneAnalysisTask.BuildercallDetails(CallDetails callDetails)The call details of a voice tone analysis task.VoiceToneAnalysisTask.BuildercreatedTimestamp(Instant createdTimestamp)The time at which a voice tone analysis task was created.VoiceToneAnalysisTask.BuilderstartedTimestamp(Instant startedTimestamp)The time at which a voice tone analysis task started.VoiceToneAnalysisTask.BuilderstatusMessage(String statusMessage)The status of a voice tone analysis task.VoiceToneAnalysisTask.BuilderupdatedTimestamp(Instant updatedTimestamp)The time at which a voice tone analysis task was updated.VoiceToneAnalysisTask.BuildervoiceToneAnalysisTaskId(String voiceToneAnalysisTaskId)The ID of the voice tone analysis task.VoiceToneAnalysisTask.BuildervoiceToneAnalysisTaskStatus(String voiceToneAnalysisTaskStatus)The status of a voice tone analysis task,IN_QUEUE,IN_PROGRESS,PARTIAL_SUCCESS,SUCCEEDED,FAILED, orSTOPPED.-
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, sdkFieldNameToField, sdkFields
-
-
-
-
Method Detail
-
voiceToneAnalysisTaskId
VoiceToneAnalysisTask.Builder voiceToneAnalysisTaskId(String voiceToneAnalysisTaskId)
The ID of the voice tone analysis task.
- Parameters:
voiceToneAnalysisTaskId- The ID of the voice tone analysis task.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
voiceToneAnalysisTaskStatus
VoiceToneAnalysisTask.Builder voiceToneAnalysisTaskStatus(String voiceToneAnalysisTaskStatus)
The status of a voice tone analysis task,
IN_QUEUE,IN_PROGRESS,PARTIAL_SUCCESS,SUCCEEDED,FAILED, orSTOPPED.- Parameters:
voiceToneAnalysisTaskStatus- The status of a voice tone analysis task,IN_QUEUE,IN_PROGRESS,PARTIAL_SUCCESS,SUCCEEDED,FAILED, orSTOPPED.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
callDetails
VoiceToneAnalysisTask.Builder callDetails(CallDetails callDetails)
The call details of a voice tone analysis task.
- Parameters:
callDetails- The call details of a voice tone analysis task.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
callDetails
default VoiceToneAnalysisTask.Builder callDetails(Consumer<CallDetails.Builder> callDetails)
The call details of a voice tone analysis task.
This is a convenience method that creates an instance of theCallDetails.Builderavoiding the need to create one manually viaCallDetails.builder().When the
Consumercompletes,SdkBuilder.build()is called immediately and its result is passed tocallDetails(CallDetails).- Parameters:
callDetails- a consumer that will call methods onCallDetails.Builder- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
callDetails(CallDetails)
-
createdTimestamp
VoiceToneAnalysisTask.Builder createdTimestamp(Instant createdTimestamp)
The time at which a voice tone analysis task was created.
- Parameters:
createdTimestamp- The time at which a voice tone analysis task was created.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
updatedTimestamp
VoiceToneAnalysisTask.Builder updatedTimestamp(Instant updatedTimestamp)
The time at which a voice tone analysis task was updated.
- Parameters:
updatedTimestamp- The time at which a voice tone analysis task was updated.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
startedTimestamp
VoiceToneAnalysisTask.Builder startedTimestamp(Instant startedTimestamp)
The time at which a voice tone analysis task started.
- Parameters:
startedTimestamp- The time at which a voice tone analysis task started.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
statusMessage
VoiceToneAnalysisTask.Builder statusMessage(String statusMessage)
The status of a voice tone analysis task.
- Parameters:
statusMessage- The status of a voice tone analysis task.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
-