Interface ListTranscriptionJobsResponse.Builder
-
- All Superinterfaces:
AwsResponse.Builder,Buildable,CopyableBuilder<ListTranscriptionJobsResponse.Builder,ListTranscriptionJobsResponse>,SdkBuilder<ListTranscriptionJobsResponse.Builder,ListTranscriptionJobsResponse>,SdkPojo,SdkResponse.Builder,TranscribeResponse.Builder
- Enclosing class:
- ListTranscriptionJobsResponse
public static interface ListTranscriptionJobsResponse.Builder extends TranscribeResponse.Builder, SdkPojo, CopyableBuilder<ListTranscriptionJobsResponse.Builder,ListTranscriptionJobsResponse>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description ListTranscriptionJobsResponse.BuildernextToken(String nextToken)IfNextTokenis present in your response, it indicates that not all results are displayed.ListTranscriptionJobsResponse.Builderstatus(String status)Lists all transcription jobs that have the status specified in your request.ListTranscriptionJobsResponse.Builderstatus(TranscriptionJobStatus status)Lists all transcription jobs that have the status specified in your request.ListTranscriptionJobsResponse.BuildertranscriptionJobSummaries(Collection<TranscriptionJobSummary> transcriptionJobSummaries)Provides a summary of information about each result.ListTranscriptionJobsResponse.BuildertranscriptionJobSummaries(Consumer<TranscriptionJobSummary.Builder>... transcriptionJobSummaries)Provides a summary of information about each result.ListTranscriptionJobsResponse.BuildertranscriptionJobSummaries(TranscriptionJobSummary... transcriptionJobSummaries)Provides a summary of information about each result.-
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
-
Methods inherited from interface software.amazon.awssdk.core.SdkResponse.Builder
sdkHttpResponse, sdkHttpResponse
-
Methods inherited from interface software.amazon.awssdk.services.transcribe.model.TranscribeResponse.Builder
build, responseMetadata, responseMetadata
-
-
-
-
Method Detail
-
status
ListTranscriptionJobsResponse.Builder status(String status)
Lists all transcription jobs that have the status specified in your request. Jobs are ordered by creation date, with the newest job first.
- Parameters:
status- Lists all transcription jobs that have the status specified in your request. Jobs are ordered by creation date, with the newest job first.- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
TranscriptionJobStatus,TranscriptionJobStatus
-
status
ListTranscriptionJobsResponse.Builder status(TranscriptionJobStatus status)
Lists all transcription jobs that have the status specified in your request. Jobs are ordered by creation date, with the newest job first.
- Parameters:
status- Lists all transcription jobs that have the status specified in your request. Jobs are ordered by creation date, with the newest job first.- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
TranscriptionJobStatus,TranscriptionJobStatus
-
nextToken
ListTranscriptionJobsResponse.Builder nextToken(String nextToken)
If
NextTokenis present in your response, it indicates that not all results are displayed. To view the next set of results, copy the string associated with theNextTokenparameter in your results output, then run your request again includingNextTokenwith the value of the copied string. Repeat as needed to view all your results.- Parameters:
nextToken- IfNextTokenis present in your response, it indicates that not all results are displayed. To view the next set of results, copy the string associated with theNextTokenparameter in your results output, then run your request again includingNextTokenwith the value of the copied string. Repeat as needed to view all your results.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
transcriptionJobSummaries
ListTranscriptionJobsResponse.Builder transcriptionJobSummaries(Collection<TranscriptionJobSummary> transcriptionJobSummaries)
Provides a summary of information about each result.
- Parameters:
transcriptionJobSummaries- Provides a summary of information about each result.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
transcriptionJobSummaries
ListTranscriptionJobsResponse.Builder transcriptionJobSummaries(TranscriptionJobSummary... transcriptionJobSummaries)
Provides a summary of information about each result.
- Parameters:
transcriptionJobSummaries- Provides a summary of information about each result.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
transcriptionJobSummaries
ListTranscriptionJobsResponse.Builder transcriptionJobSummaries(Consumer<TranscriptionJobSummary.Builder>... transcriptionJobSummaries)
Provides a summary of information about each result.
This is a convenience method that creates an instance of theTranscriptionJobSummary.Builderavoiding the need to create one manually viaTranscriptionJobSummary.builder().When the
Consumercompletes,SdkBuilder.build()is called immediately and its result is passed to#transcriptionJobSummaries(List.) - Parameters:
transcriptionJobSummaries- a consumer that will call methods onTranscriptionJobSummary.Builder- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
#transcriptionJobSummaries(java.util.Collection)
-
-