Struct aws_sdk_qldb::operation::export_journal_to_s3::builders::ExportJournalToS3OutputBuilder
source · #[non_exhaustive]pub struct ExportJournalToS3OutputBuilder { /* private fields */ }Expand description
A builder for ExportJournalToS3Output.
Implementations§
source§impl ExportJournalToS3OutputBuilder
impl ExportJournalToS3OutputBuilder
sourcepub fn export_id(self, input: impl Into<String>) -> Self
pub fn export_id(self, input: impl Into<String>) -> Self
The UUID (represented in Base62-encoded text) that QLDB assigns to each journal export job.
To describe your export request and check the status of the job, you can use ExportId to call DescribeJournalS3Export.
sourcepub fn set_export_id(self, input: Option<String>) -> Self
pub fn set_export_id(self, input: Option<String>) -> Self
The UUID (represented in Base62-encoded text) that QLDB assigns to each journal export job.
To describe your export request and check the status of the job, you can use ExportId to call DescribeJournalS3Export.
sourcepub fn get_export_id(&self) -> &Option<String>
pub fn get_export_id(&self) -> &Option<String>
The UUID (represented in Base62-encoded text) that QLDB assigns to each journal export job.
To describe your export request and check the status of the job, you can use ExportId to call DescribeJournalS3Export.
sourcepub fn build(self) -> Result<ExportJournalToS3Output, BuildError>
pub fn build(self) -> Result<ExportJournalToS3Output, BuildError>
Consumes the builder and constructs a ExportJournalToS3Output.
This method will fail if any of the following fields are not set:
Trait Implementations§
source§impl Clone for ExportJournalToS3OutputBuilder
impl Clone for ExportJournalToS3OutputBuilder
source§fn clone(&self) -> ExportJournalToS3OutputBuilder
fn clone(&self) -> ExportJournalToS3OutputBuilder
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source. Read moresource§impl Default for ExportJournalToS3OutputBuilder
impl Default for ExportJournalToS3OutputBuilder
source§fn default() -> ExportJournalToS3OutputBuilder
fn default() -> ExportJournalToS3OutputBuilder
source§impl PartialEq for ExportJournalToS3OutputBuilder
impl PartialEq for ExportJournalToS3OutputBuilder
source§fn eq(&self, other: &ExportJournalToS3OutputBuilder) -> bool
fn eq(&self, other: &ExportJournalToS3OutputBuilder) -> bool
self and other values to be equal, and is used
by ==.impl StructuralPartialEq for ExportJournalToS3OutputBuilder
Auto Trait Implementations§
impl Freeze for ExportJournalToS3OutputBuilder
impl RefUnwindSafe for ExportJournalToS3OutputBuilder
impl Send for ExportJournalToS3OutputBuilder
impl Sync for ExportJournalToS3OutputBuilder
impl Unpin for ExportJournalToS3OutputBuilder
impl UnwindSafe for ExportJournalToS3OutputBuilder
Blanket Implementations§
source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
source§impl<T> Instrument for T
impl<T> Instrument for T
source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
source§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
source§impl<T> IntoEither for T
impl<T> IntoEither for T
source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moresource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read more