Interface CfnStreamProcessorPropsMixin.S3DestinationProperty
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnStreamProcessorPropsMixin.S3DestinationProperty.Jsii$Proxy
- Enclosing class:
CfnStreamProcessorPropsMixin
@Stability(Stable)
public static interface CfnStreamProcessorPropsMixin.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.cfnpropertymixins.services.rekognition.*;
S3DestinationProperty s3DestinationProperty = S3DestinationProperty.builder()
.bucketName("bucketName")
.objectKeyPrefix("objectKeyPrefix")
.build();
- See Also:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forCfnStreamProcessorPropsMixin.S3DestinationPropertystatic final classAn implementation forCfnStreamProcessorPropsMixin.S3DestinationProperty -
Method Summary
Modifier and TypeMethodDescriptionbuilder()default StringDescribes the destination Amazon Simple Storage Service (Amazon S3) bucket name of a stream processor's exports.default StringDescribes the destination Amazon Simple Storage Service (Amazon S3) object keys of a stream processor's exports.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
-