[][src]Struct rusoto_qldb::S3ExportConfiguration

pub struct S3ExportConfiguration {
    pub bucket: String,
    pub encryption_configuration: S3EncryptionConfiguration,
    pub prefix: String,
}

The Amazon Simple Storage Service (Amazon S3) bucket location in which a journal export job writes the journal contents.

Fields

bucket: String

The Amazon S3 bucket name in which a journal export job writes the journal contents.

The bucket name must comply with the Amazon S3 bucket naming conventions. For more information, see Bucket Restrictions and Limitations in the Amazon S3 Developer Guide.

encryption_configuration: S3EncryptionConfiguration

The encryption settings that are used by a journal export job to write data in an Amazon S3 bucket.

prefix: String

The prefix for the Amazon S3 bucket in which a journal export job writes the journal contents.

The prefix must comply with Amazon S3 key naming rules and restrictions. For more information, see Object Key and Metadata in the Amazon S3 Developer Guide.

The following are examples of valid Prefix values:

  • JournalExports-ForMyLedger/Testing/

  • JournalExports

  • My:Tests/

Trait Implementations

impl Clone for S3ExportConfiguration[src]

impl Debug for S3ExportConfiguration[src]

impl Default for S3ExportConfiguration[src]

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

impl PartialEq<S3ExportConfiguration> for S3ExportConfiguration[src]

impl Serialize for S3ExportConfiguration[src]

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