amazonka-dynamodb-2.0: Amazon DynamoDB 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.DynamoDB.Types.S3BucketSource

Description

 
Synopsis

Documentation

data S3BucketSource Source #

The S3 bucket that is being imported from.

See: newS3BucketSource smart constructor.

Constructors

S3BucketSource' 

Fields

  • s3BucketOwner :: Maybe Text

    The account number of the S3 bucket that is being imported from. If the bucket is owned by the requester this is optional.

  • s3KeyPrefix :: Maybe Text

    The key prefix shared by all S3 Objects that are being imported.

  • s3Bucket :: Text

    The S3 bucket that is being imported from.

Instances

Instances details
FromJSON S3BucketSource Source # 
Instance details

Defined in Amazonka.DynamoDB.Types.S3BucketSource

ToJSON S3BucketSource Source # 
Instance details

Defined in Amazonka.DynamoDB.Types.S3BucketSource

Generic S3BucketSource Source # 
Instance details

Defined in Amazonka.DynamoDB.Types.S3BucketSource

Associated Types

type Rep S3BucketSource :: Type -> Type #

Read S3BucketSource Source # 
Instance details

Defined in Amazonka.DynamoDB.Types.S3BucketSource

Show S3BucketSource Source # 
Instance details

Defined in Amazonka.DynamoDB.Types.S3BucketSource

NFData S3BucketSource Source # 
Instance details

Defined in Amazonka.DynamoDB.Types.S3BucketSource

Methods

rnf :: S3BucketSource -> () #

Eq S3BucketSource Source # 
Instance details

Defined in Amazonka.DynamoDB.Types.S3BucketSource

Hashable S3BucketSource Source # 
Instance details

Defined in Amazonka.DynamoDB.Types.S3BucketSource

type Rep S3BucketSource Source # 
Instance details

Defined in Amazonka.DynamoDB.Types.S3BucketSource

type Rep S3BucketSource = D1 ('MetaData "S3BucketSource" "Amazonka.DynamoDB.Types.S3BucketSource" "amazonka-dynamodb-2.0-GNxlseyeFiu302JKQwQrUS" 'False) (C1 ('MetaCons "S3BucketSource'" 'PrefixI 'True) (S1 ('MetaSel ('Just "s3BucketOwner") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe Text)) :*: (S1 ('MetaSel ('Just "s3KeyPrefix") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe Text)) :*: S1 ('MetaSel ('Just "s3Bucket") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 Text))))

newS3BucketSource Source #

Create a value of S3BucketSource 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:s3BucketOwner:S3BucketSource', s3BucketSource_s3BucketOwner - The account number of the S3 bucket that is being imported from. If the bucket is owned by the requester this is optional.

$sel:s3KeyPrefix:S3BucketSource', s3BucketSource_s3KeyPrefix - The key prefix shared by all S3 Objects that are being imported.

$sel:s3Bucket:S3BucketSource', s3BucketSource_s3Bucket - The S3 bucket that is being imported from.

s3BucketSource_s3BucketOwner :: Lens' S3BucketSource (Maybe Text) Source #

The account number of the S3 bucket that is being imported from. If the bucket is owned by the requester this is optional.

s3BucketSource_s3KeyPrefix :: Lens' S3BucketSource (Maybe Text) Source #

The key prefix shared by all S3 Objects that are being imported.

s3BucketSource_s3Bucket :: Lens' S3BucketSource Text Source #

The S3 bucket that is being imported from.