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

Class: Aws::QLDB::Types::ExportJournalToS3Request

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

Overview

Note:

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

{
  name: "LedgerName", # required
  inclusive_start_time: Time.now, # required
  exclusive_end_time: Time.now, # required
  s3_export_configuration: { # required
    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",
    },
  },
  role_arn: "Arn", # required
}

Instance Attribute Summary collapse

Instance Attribute Details

#exclusive_end_timeTime

The exclusive end date and time for the range of journal contents that you want to export.

The ExclusiveEndTime must be in ISO 8601 date and time format and in Universal Coordinated Time (UTC). For example: 2019-06-13T21:36:34Z

The ExclusiveEndTime must be less than or equal to the current UTC date and time.

Returns:

  • (Time)

    The exclusive end date and time for the range of journal contents that you want to export.

#inclusive_start_timeTime

The inclusive start date and time for the range of journal contents that you want to export.

The InclusiveStartTime must be in ISO 8601 date and time format and in Universal Coordinated Time (UTC). For example: 2019-06-13T21:36:34Z

The InclusiveStartTime must be before ExclusiveEndTime.

If you provide an InclusiveStartTime that is before the ledger\'s CreationDateTime, Amazon QLDB defaults it to the ledger\'s CreationDateTime.

Returns:

  • (Time)

    The inclusive start date and time for the range of journal contents that you want to export.

#nameString

The name of the ledger.

Returns:

  • (String)

    The name of the ledger.

#role_arnString

The Amazon Resource Name (ARN) of the IAM role that grants QLDB permissions for a journal export job to do the following:

  • Write objects into your Amazon Simple Storage Service (Amazon S3) bucket.

  • (Optional) Use your customer master key (CMK) in AWS Key Management Service (AWS KMS) for server-side encryption of your exported data.

Returns:

  • (String)

    The Amazon Resource Name (ARN) of the IAM role that grants QLDB permissions for a journal export job to do the following:.

#s3_export_configurationTypes::S3ExportConfiguration

The configuration settings of the Amazon S3 bucket destination for your export request.

Returns: