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:
-
Nested Class Summary
Modifier and TypeInterfaceDescriptionstatic final class
A builder forCfnStreamProcessor.S3DestinationProperty
static final class
An implementation forCfnStreamProcessor.S3DestinationProperty
-
Method Summary
Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getBucketName
Describes the destination Amazon Simple Storage Service (Amazon S3) bucket name of a stream processor's exports.- See Also:
-
getObjectKeyPrefix
Describes the destination Amazon Simple Storage Service (Amazon S3) object keys of a stream processor's exports.- See Also:
-
builder
-