public static interface GetPersonTrackingResponse.Builder extends RekognitionResponse.Builder, SdkPojo, CopyableBuilder<GetPersonTrackingResponse.Builder,GetPersonTrackingResponse>
Modifier and Type | Method and Description |
---|---|
GetPersonTrackingResponse.Builder |
jobStatus(String jobStatus)
The current status of the person tracking job.
|
GetPersonTrackingResponse.Builder |
jobStatus(VideoJobStatus jobStatus)
The current status of the person tracking job.
|
GetPersonTrackingResponse.Builder |
nextToken(String nextToken)
If the response is truncated, Amazon Rekognition Video returns this token that you can use in the subsequent
request to retrieve the next set of persons.
|
GetPersonTrackingResponse.Builder |
persons(Collection<PersonDetection> persons)
An array of the persons detected in the video and the time(s) their path was tracked throughout the video.
|
GetPersonTrackingResponse.Builder |
persons(Consumer<PersonDetection.Builder>... persons)
An array of the persons detected in the video and the time(s) their path was tracked throughout the video.
|
GetPersonTrackingResponse.Builder |
persons(PersonDetection... persons)
An array of the persons detected in the video and the time(s) their path was tracked throughout the video.
|
GetPersonTrackingResponse.Builder |
statusMessage(String statusMessage)
If the job fails,
StatusMessage provides a descriptive error message. |
default GetPersonTrackingResponse.Builder |
videoMetadata(Consumer<VideoMetadata.Builder> videoMetadata)
Information about a video that Amazon Rekognition Video analyzed.
|
GetPersonTrackingResponse.Builder |
videoMetadata(VideoMetadata videoMetadata)
Information about a video that Amazon Rekognition Video analyzed.
|
build, responseMetadata, responseMetadata
sdkHttpResponse, sdkHttpResponse
copy
applyMutation, build
GetPersonTrackingResponse.Builder jobStatus(String jobStatus)
The current status of the person tracking job.
jobStatus
- The current status of the person tracking job.VideoJobStatus
,
VideoJobStatus
GetPersonTrackingResponse.Builder jobStatus(VideoJobStatus jobStatus)
The current status of the person tracking job.
jobStatus
- The current status of the person tracking job.VideoJobStatus
,
VideoJobStatus
GetPersonTrackingResponse.Builder statusMessage(String statusMessage)
If the job fails, StatusMessage
provides a descriptive error message.
statusMessage
- If the job fails, StatusMessage
provides a descriptive error message.GetPersonTrackingResponse.Builder videoMetadata(VideoMetadata videoMetadata)
Information about a video that Amazon Rekognition Video analyzed. Videometadata
is returned in
every page of paginated responses from a Amazon Rekognition Video operation.
videoMetadata
- Information about a video that Amazon Rekognition Video analyzed. Videometadata
is
returned in every page of paginated responses from a Amazon Rekognition Video operation.default GetPersonTrackingResponse.Builder videoMetadata(Consumer<VideoMetadata.Builder> videoMetadata)
Information about a video that Amazon Rekognition Video analyzed. Videometadata
is returned in
every page of paginated responses from a Amazon Rekognition Video operation.
VideoMetadata.Builder
avoiding the need to
create one manually via VideoMetadata.builder()
.
When the Consumer
completes, SdkBuilder.build()
is called immediately and its
result is passed to videoMetadata(VideoMetadata)
.videoMetadata
- a consumer that will call methods on VideoMetadata.Builder
videoMetadata(VideoMetadata)
GetPersonTrackingResponse.Builder nextToken(String nextToken)
If the response is truncated, Amazon Rekognition Video returns this token that you can use in the subsequent request to retrieve the next set of persons.
nextToken
- If the response is truncated, Amazon Rekognition Video returns this token that you can use in the
subsequent request to retrieve the next set of persons.GetPersonTrackingResponse.Builder persons(Collection<PersonDetection> persons)
An array of the persons detected in the video and the time(s) their path was tracked throughout the video. An array element will exist for each time a person's path is tracked.
persons
- An array of the persons detected in the video and the time(s) their path was tracked throughout the
video. An array element will exist for each time a person's path is tracked.GetPersonTrackingResponse.Builder persons(PersonDetection... persons)
An array of the persons detected in the video and the time(s) their path was tracked throughout the video. An array element will exist for each time a person's path is tracked.
persons
- An array of the persons detected in the video and the time(s) their path was tracked throughout the
video. An array element will exist for each time a person's path is tracked.GetPersonTrackingResponse.Builder persons(Consumer<PersonDetection.Builder>... persons)
An array of the persons detected in the video and the time(s) their path was tracked throughout the video. An array element will exist for each time a person's path is tracked.
This is a convenience that creates an instance of theList.Builder
avoiding the need
to create one manually via List#builder()
.
When the Consumer
completes, List.Builder#build()
is called immediately and
its result is passed to #persons(List)
.persons
- a consumer that will call methods on List.Builder
#persons(List)
Copyright © 2017 Amazon Web Services, Inc. All Rights Reserved.