pub struct ExportJournalToS3Request {
pub exclusive_end_time: f64,
pub inclusive_start_time: f64,
pub name: String,
pub role_arn: String,
pub s3_export_configuration: S3ExportConfiguration,
}
Fields§
§exclusive_end_time: f64
The exclusive end date and time for the range of journal contents 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.
inclusive_start_time: f64
The inclusive start date and time for the range of journal contents 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
.
name: String
The name of the ledger.
role_arn: String
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.
s3_export_configuration: S3ExportConfiguration
The configuration settings of the Amazon S3 bucket destination for your export request.
Trait Implementations§
Source§impl Clone for ExportJournalToS3Request
impl Clone for ExportJournalToS3Request
Source§fn clone(&self) -> ExportJournalToS3Request
fn clone(&self) -> ExportJournalToS3Request
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read more