amazonka-rekognition-2.0: Amazon Rekognition SDK.
Copyright(c) 2013-2023 Brendan Hay
LicenseMozilla Public License, v. 2.0.
MaintainerBrendan Hay
Stabilityauto-generated
Portabilitynon-portable (GHC extensions)
Safe HaskellSafe-Inferred
LanguageHaskell2010

Amazonka.Rekognition.Types.S3Destination

Description

 
Synopsis

Documentation

data S3Destination Source #

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.

See: newS3Destination smart constructor.

Constructors

S3Destination' 

Fields

  • bucket :: Maybe Text

    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.

  • keyPrefix :: Maybe Text

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

Instances

Instances details
FromJSON S3Destination Source # 
Instance details

Defined in Amazonka.Rekognition.Types.S3Destination

ToJSON S3Destination Source # 
Instance details

Defined in Amazonka.Rekognition.Types.S3Destination

Generic S3Destination Source # 
Instance details

Defined in Amazonka.Rekognition.Types.S3Destination

Associated Types

type Rep S3Destination :: Type -> Type #

Read S3Destination Source # 
Instance details

Defined in Amazonka.Rekognition.Types.S3Destination

Show S3Destination Source # 
Instance details

Defined in Amazonka.Rekognition.Types.S3Destination

NFData S3Destination Source # 
Instance details

Defined in Amazonka.Rekognition.Types.S3Destination

Methods

rnf :: S3Destination -> () #

Eq S3Destination Source # 
Instance details

Defined in Amazonka.Rekognition.Types.S3Destination

Hashable S3Destination Source # 
Instance details

Defined in Amazonka.Rekognition.Types.S3Destination

type Rep S3Destination Source # 
Instance details

Defined in Amazonka.Rekognition.Types.S3Destination

type Rep S3Destination = D1 ('MetaData "S3Destination" "Amazonka.Rekognition.Types.S3Destination" "amazonka-rekognition-2.0-EaCrS9R3rWADqefEZvOx5B" 'False) (C1 ('MetaCons "S3Destination'" 'PrefixI 'True) (S1 ('MetaSel ('Just "bucket") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe Text)) :*: S1 ('MetaSel ('Just "keyPrefix") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe Text))))

newS3Destination :: S3Destination Source #

Create a value of S3Destination with all optional fields omitted.

Use generic-lens or optics to modify other optional fields.

The following record fields are available, with the corresponding lenses provided for backwards compatibility:

$sel:bucket:S3Destination', s3Destination_bucket - 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.

$sel:keyPrefix:S3Destination', s3Destination_keyPrefix - The prefix value of the location within the bucket that you want the information to be published to. For more information, see Using prefixes.

s3Destination_bucket :: Lens' S3Destination (Maybe Text) Source #

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.

s3Destination_keyPrefix :: Lens' S3Destination (Maybe Text) Source #

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