Class: Aws::QLDB::Types::S3ExportConfiguration

Inherits:
Struct
  • Object
show all
Includes:
Structure
Defined in:
lib/aws-sdk-qldb/types.rb

Overview

The Amazon Simple Storage Service (Amazon S3) bucket location in which a journal export job writes the journal contents.

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#bucketString

The Amazon S3 bucket name in which a journal export job writes the journal contents.

The bucket name must comply with the Amazon S3 bucket naming conventions. For more information, see [Bucket Restrictions and Limitations] in the *Amazon S3 Developer Guide*.

[1]: docs.aws.amazon.com/AmazonS3/latest/dev/BucketRestrictions.html

Returns:

  • (String)


1299
1300
1301
1302
1303
1304
1305
# File 'lib/aws-sdk-qldb/types.rb', line 1299

class S3ExportConfiguration < Struct.new(
  :bucket,
  :prefix,
  :encryption_configuration)
  SENSITIVE = []
  include Aws::Structure
end

#encryption_configurationTypes::S3EncryptionConfiguration

The encryption settings that are used by a journal export job to write data in an Amazon S3 bucket.



1299
1300
1301
1302
1303
1304
1305
# File 'lib/aws-sdk-qldb/types.rb', line 1299

class S3ExportConfiguration < Struct.new(
  :bucket,
  :prefix,
  :encryption_configuration)
  SENSITIVE = []
  include Aws::Structure
end

#prefixString

The prefix for the Amazon S3 bucket in which a journal export job writes the journal contents.

The prefix must comply with Amazon S3 key naming rules and restrictions. For more information, see [Object Key and Metadata] in the *Amazon S3 Developer Guide*.

The following are examples of valid ‘Prefix` values:

  • ‘JournalExports-ForMyLedger/Testing/`

  • ‘JournalExports`

  • ‘My:Tests/`

[1]: docs.aws.amazon.com/AmazonS3/latest/dev/UsingMetadata.html

Returns:

  • (String)


1299
1300
1301
1302
1303
1304
1305
# File 'lib/aws-sdk-qldb/types.rb', line 1299

class S3ExportConfiguration < Struct.new(
  :bucket,
  :prefix,
  :encryption_configuration)
  SENSITIVE = []
  include Aws::Structure
end