Interface CfnStreamProcessor.S3DestinationProperty

All Superinterfaces:
software.amazon.jsii.JsiiSerializable
All Known Implementing Classes:
CfnStreamProcessor.S3DestinationProperty.Jsii$Proxy
Enclosing class:
CfnStreamProcessor

@Stability(Stable) public static interface CfnStreamProcessor.S3DestinationProperty extends software.amazon.jsii.JsiiSerializable
The Amazon S3 bucket location to which Amazon Rekognition publishes the detailed inference results of a video analysis operation.

These results include the name of the stream processor resource, the session ID of the stream processing session, and labeled timestamps and bounding boxes for detected labels. For more information, see S3Destination .

Example:

 // The code below shows an example of how to instantiate this type.
 // The values are placeholders you should change.
 import software.amazon.awscdk.services.rekognition.*;
 S3DestinationProperty s3DestinationProperty = S3DestinationProperty.builder()
         .bucketName("bucketName")
         // the properties below are optional
         .objectKeyPrefix("objectKeyPrefix")
         .build();
 

See Also: