[][src]Struct rusoto_qldb::JournalS3ExportDescription

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,
}

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: f64

The exclusive end date and time for the range of journal contents that are specified in the original export request.

export_creation_time: f64

The 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: String

The unique ID of the journal export job.

inclusive_start_time: f64

The inclusive start date and time for the range of journal contents that are specified in the original export request.

ledger_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: S3ExportConfigurationstatus: String

The current state of the journal export job.

Trait Implementations

impl Clone for JournalS3ExportDescription[src]

impl Debug for JournalS3ExportDescription[src]

impl Default for JournalS3ExportDescription[src]

impl<'de> Deserialize<'de> for JournalS3ExportDescription[src]

impl PartialEq<JournalS3ExportDescription> for JournalS3ExportDescription[src]

impl StructuralPartialEq for JournalS3ExportDescription[src]

Auto Trait Implementations

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> DeserializeOwned for T where
    T: for<'de> Deserialize<'de>, 
[src]

impl<T> From<T> for T[src]

impl<T> Instrument for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> Same<T> for T

type Output = T

Should always be Self

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.