You are viewing documentation for version 2 of the AWS SDK for Ruby. Version 3 documentation can be found here.

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

Inherits:
Struct
  • Object
show all
Defined in:
(unknown)

Overview

Note:

When passing S3ExportConfiguration as input to an Aws::Client method, you can use a vanilla Hash:

{
  bucket: "S3Bucket", # required
  prefix: "S3Prefix", # required
  encryption_configuration: { # required
    object_encryption_type: "SSE_KMS", # required, accepts SSE_KMS, SSE_S3, NO_ENCRYPTION
    kms_key_arn: "Arn",
  },
}

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

Returned by:

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.

Returns:

  • (String)

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

#encryption_configurationTypes::S3EncryptionConfiguration

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

Returns:

#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/

Returns:

  • (String)

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