Class: Aws::Rekognition::Types::S3Destination
- Inherits:
-
Struct
- Object
- Struct
- Aws::Rekognition::Types::S3Destination
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-rekognition/types.rb
Overview
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.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#bucket ⇒ String
The name of the Amazon S3 bucket you want to associate with the streaming video project.
-
#key_prefix ⇒ String
The prefix value of the location within the bucket that you want the information to be published to.
Instance Attribute Details
#bucket ⇒ String
The name of the Amazon S3 bucket you want to associate with the streaming video project. You must be the owner of the Amazon S3 bucket.
6287 6288 6289 6290 6291 6292 |
# File 'lib/aws-sdk-rekognition/types.rb', line 6287 class S3Destination < Struct.new( :bucket, :key_prefix) SENSITIVE = [] include Aws::Structure end |
#key_prefix ⇒ String
The prefix value of the location within the bucket that you want the information to be published to. For more information, see [Using prefixes].
[1]: docs.aws.amazon.com/AmazonS3/latest/userguide/using-prefixes.html
6287 6288 6289 6290 6291 6292 |
# File 'lib/aws-sdk-rekognition/types.rb', line 6287 class S3Destination < Struct.new( :bucket, :key_prefix) SENSITIVE = [] include Aws::Structure end |