Class: Aws::Rekognition::Types::S3Destination

Inherits:
Struct
  • Object
show all
Defined in:
gems/aws-sdk-rekognition/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

Instance Attribute Details

#bucketString

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.

Returns:

  • (String)


6274
6275
6276
6277
6278
6279
# File 'gems/aws-sdk-rekognition/lib/aws-sdk-rekognition/types.rb', line 6274

class S3Destination < Struct.new(
  :bucket,
  :key_prefix)
  SENSITIVE = []
  include Aws::Structure
end

#key_prefixString

The prefix value of the location within the bucket that you want the information to be published to. For more information, see Using prefixes.

Returns:

  • (String)


6274
6275
6276
6277
6278
6279
# File 'gems/aws-sdk-rekognition/lib/aws-sdk-rekognition/types.rb', line 6274

class S3Destination < Struct.new(
  :bucket,
  :key_prefix)
  SENSITIVE = []
  include Aws::Structure
end