Interface IssueDetected.Builder
-
- All Superinterfaces:
Buildable,CopyableBuilder<IssueDetected.Builder,IssueDetected>,SdkBuilder<IssueDetected.Builder,IssueDetected>,SdkPojo
- Enclosing class:
- IssueDetected
@Mutable @NotThreadSafe public static interface IssueDetected.Builder extends SdkPojo, CopyableBuilder<IssueDetected.Builder,IssueDetected>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Default Methods Modifier and Type Method Description default IssueDetected.BuildercharacterOffsets(Consumer<CharacterOffsets.Builder> characterOffsets)Provides the timestamps that identify when in an audio segment the specified issue occurs.IssueDetected.BuildercharacterOffsets(CharacterOffsets characterOffsets)Provides the timestamps that identify when in an audio segment the specified issue occurs.-
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
-
characterOffsets
IssueDetected.Builder characterOffsets(CharacterOffsets characterOffsets)
Provides the timestamps that identify when in an audio segment the specified issue occurs.
- Parameters:
characterOffsets- Provides the timestamps that identify when in an audio segment the specified issue occurs.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
characterOffsets
default IssueDetected.Builder characterOffsets(Consumer<CharacterOffsets.Builder> characterOffsets)
Provides the timestamps that identify when in an audio segment the specified issue occurs.
This is a convenience method that creates an instance of theCharacterOffsets.Builderavoiding the need to create one manually viaCharacterOffsets.builder().When the
Consumercompletes,SdkBuilder.build()is called immediately and its result is passed tocharacterOffsets(CharacterOffsets).- Parameters:
characterOffsets- a consumer that will call methods onCharacterOffsets.Builder- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
characterOffsets(CharacterOffsets)
-
-