pub struct S3ExportConfiguration {
pub bucket: String,
pub encryption_configuration: S3EncryptionConfiguration,
pub prefix: String,
}Expand description
The Amazon Simple Storage Service (Amazon S3) bucket location in which a journal export job writes the journal contents.
Fields§
§bucket: StringThe 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: S3EncryptionConfigurationThe encryption settings that are used by a journal export job to write data in an Amazon S3 bucket.
prefix: StringThe 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§
Source§impl Clone for S3ExportConfiguration
impl Clone for S3ExportConfiguration
Source§fn clone(&self) -> S3ExportConfiguration
fn clone(&self) -> S3ExportConfiguration
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source. Read more