Interface StreamProcessorOutput.Builder
-
- All Superinterfaces:
Buildable,CopyableBuilder<StreamProcessorOutput.Builder,StreamProcessorOutput>,SdkBuilder<StreamProcessorOutput.Builder,StreamProcessorOutput>,SdkPojo
- Enclosing class:
- StreamProcessorOutput
public static interface StreamProcessorOutput.Builder extends SdkPojo, CopyableBuilder<StreamProcessorOutput.Builder,StreamProcessorOutput>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Default Methods Modifier and Type Method Description default StreamProcessorOutput.BuilderkinesisDataStream(Consumer<KinesisDataStream.Builder> kinesisDataStream)The Amazon Kinesis Data Streams stream to which the Amazon Rekognition stream processor streams the analysis results.StreamProcessorOutput.BuilderkinesisDataStream(KinesisDataStream kinesisDataStream)The Amazon Kinesis Data Streams stream to which the Amazon Rekognition stream processor streams the analysis results.default StreamProcessorOutput.Builders3Destination(Consumer<S3Destination.Builder> s3Destination)The Amazon S3 bucket location to which Amazon Rekognition publishes the detailed inference results of a video analysis operation.StreamProcessorOutput.Builders3Destination(S3Destination s3Destination)The Amazon S3 bucket location to which Amazon Rekognition publishes the detailed inference results of a video analysis operation.-
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
-
kinesisDataStream
StreamProcessorOutput.Builder kinesisDataStream(KinesisDataStream kinesisDataStream)
The Amazon Kinesis Data Streams stream to which the Amazon Rekognition stream processor streams the analysis results.
- Parameters:
kinesisDataStream- The Amazon Kinesis Data Streams stream to which the Amazon Rekognition stream processor streams the analysis results.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
kinesisDataStream
default StreamProcessorOutput.Builder kinesisDataStream(Consumer<KinesisDataStream.Builder> kinesisDataStream)
The Amazon Kinesis Data Streams stream to which the Amazon Rekognition stream processor streams the analysis results.
This is a convenience method that creates an instance of theKinesisDataStream.Builderavoiding the need to create one manually viaKinesisDataStream.builder().When the
Consumercompletes,SdkBuilder.build()is called immediately and its result is passed tokinesisDataStream(KinesisDataStream).- Parameters:
kinesisDataStream- a consumer that will call methods onKinesisDataStream.Builder- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
kinesisDataStream(KinesisDataStream)
-
s3Destination
StreamProcessorOutput.Builder s3Destination(S3Destination s3Destination)
The Amazon S3 bucket location to which Amazon Rekognition publishes the detailed inference results of a video analysis operation.
- Parameters:
s3Destination- The Amazon S3 bucket location to which Amazon Rekognition publishes the detailed inference results of a video analysis operation.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
s3Destination
default StreamProcessorOutput.Builder s3Destination(Consumer<S3Destination.Builder> s3Destination)
The Amazon S3 bucket location to which Amazon Rekognition publishes the detailed inference results of a video analysis operation.
This is a convenience method that creates an instance of theS3Destination.Builderavoiding the need to create one manually viaS3Destination.builder().When the
Consumercompletes,SdkBuilder.build()is called immediately and its result is passed tos3Destination(S3Destination).- Parameters:
s3Destination- a consumer that will call methods onS3Destination.Builder- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
s3Destination(S3Destination)
-
-