interface S3DestinationProperty
Language | Type name |
---|---|
.NET | Amazon.CDK.AWS.Rekognition.CfnStreamProcessor.S3DestinationProperty |
Java | software.amazon.awscdk.services.rekognition.CfnStreamProcessor.S3DestinationProperty |
Python | aws_cdk.aws_rekognition.CfnStreamProcessor.S3DestinationProperty |
TypeScript | @aws-cdk/aws-rekognition » CfnStreamProcessor » S3DestinationProperty |
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 * as rekognition from '@aws-cdk/aws-rekognition';
const s3DestinationProperty: rekognition.CfnStreamProcessor.S3DestinationProperty = {
bucketName: 'bucketName',
// the properties below are optional
objectKeyPrefix: 'objectKeyPrefix',
};
Properties
Name | Type | Description |
---|---|---|
bucket | string | Describes the destination Amazon Simple Storage Service (Amazon S3) bucket name of a stream processor's exports. |
object | string | Describes the destination Amazon Simple Storage Service (Amazon S3) object keys of a stream processor's exports. |
bucketName
Type:
string
Describes the destination Amazon Simple Storage Service (Amazon S3) bucket name of a stream processor's exports.
objectKeyPrefix?
Type:
string
(optional)
Describes the destination Amazon Simple Storage Service (Amazon S3) object keys of a stream processor's exports.