[][src]Struct rusoto_qldb::ExportJournalToS3Request

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 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.

inclusive_start_time: f64

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.

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

impl Clone for ExportJournalToS3Request[src]

impl Debug for ExportJournalToS3Request[src]

impl Default for ExportJournalToS3Request[src]

impl PartialEq<ExportJournalToS3Request> for ExportJournalToS3Request[src]

impl Serialize for ExportJournalToS3Request[src]

impl StructuralPartialEq for ExportJournalToS3Request[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> 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.