pub struct JournalS3ExportDescription {
pub exclusive_end_time: f64,
pub export_creation_time: f64,
pub export_id: String,
pub inclusive_start_time: f64,
pub ledger_name: String,
pub role_arn: String,
pub s3_export_configuration: S3ExportConfiguration,
pub status: String,
}Expand description
The information about a journal export job, including the ledger name, export ID, when it was created, current status, and its start and end time export parameters.
Fields§
§exclusive_end_time: f64The exclusive end date and time for the range of journal contents that are specified in the original export request.
export_creation_time: f64The date and time, in epoch time format, when the export job was created. (Epoch time format is the number of seconds elapsed since 12:00:00 AM January 1, 1970 UTC.)
export_id: StringThe unique ID of the journal export job.
inclusive_start_time: f64The inclusive start date and time for the range of journal contents that are specified in the original export request.
ledger_name: StringThe name of the ledger.
role_arn: StringThe 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§status: StringThe current state of the journal export job.
Trait Implementations§
Source§impl Clone for JournalS3ExportDescription
impl Clone for JournalS3ExportDescription
Source§fn clone(&self) -> JournalS3ExportDescription
fn clone(&self) -> JournalS3ExportDescription
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source. Read more