Struct aws_sdk_qldb::operation::describe_journal_s3_export::builders::DescribeJournalS3ExportInputBuilder
source · #[non_exhaustive]pub struct DescribeJournalS3ExportInputBuilder { /* private fields */ }Expand description
A builder for DescribeJournalS3ExportInput.
Implementations§
source§impl DescribeJournalS3ExportInputBuilder
impl DescribeJournalS3ExportInputBuilder
sourcepub fn name(self, input: impl Into<String>) -> Self
pub fn name(self, input: impl Into<String>) -> Self
The name of the ledger.
This field is required.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) of the journal export job to describe.
This field is required.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) of the journal export job to describe.
sourcepub fn get_export_id(&self) -> &Option<String>
pub fn get_export_id(&self) -> &Option<String>
The UUID (represented in Base62-encoded text) of the journal export job to describe.
sourcepub fn build(self) -> Result<DescribeJournalS3ExportInput, BuildError>
pub fn build(self) -> Result<DescribeJournalS3ExportInput, BuildError>
Consumes the builder and constructs a DescribeJournalS3ExportInput.
source§impl DescribeJournalS3ExportInputBuilder
impl DescribeJournalS3ExportInputBuilder
sourcepub async fn send_with(
self,
client: &Client,
) -> Result<DescribeJournalS3ExportOutput, SdkError<DescribeJournalS3ExportError, HttpResponse>>
pub async fn send_with( self, client: &Client, ) -> Result<DescribeJournalS3ExportOutput, SdkError<DescribeJournalS3ExportError, HttpResponse>>
Sends a request with this input using the given client.
Trait Implementations§
source§impl Clone for DescribeJournalS3ExportInputBuilder
impl Clone for DescribeJournalS3ExportInputBuilder
source§fn clone(&self) -> DescribeJournalS3ExportInputBuilder
fn clone(&self) -> DescribeJournalS3ExportInputBuilder
Returns a copy of the value. Read more
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moresource§impl Default for DescribeJournalS3ExportInputBuilder
impl Default for DescribeJournalS3ExportInputBuilder
source§fn default() -> DescribeJournalS3ExportInputBuilder
fn default() -> DescribeJournalS3ExportInputBuilder
Returns the “default value” for a type. Read more
source§impl PartialEq for DescribeJournalS3ExportInputBuilder
impl PartialEq for DescribeJournalS3ExportInputBuilder
source§fn eq(&self, other: &DescribeJournalS3ExportInputBuilder) -> bool
fn eq(&self, other: &DescribeJournalS3ExportInputBuilder) -> bool
This method tests for
self and other values to be equal, and is used
by ==.impl StructuralPartialEq for DescribeJournalS3ExportInputBuilder
Auto Trait Implementations§
impl Freeze for DescribeJournalS3ExportInputBuilder
impl RefUnwindSafe for DescribeJournalS3ExportInputBuilder
impl Send for DescribeJournalS3ExportInputBuilder
impl Sync for DescribeJournalS3ExportInputBuilder
impl Unpin for DescribeJournalS3ExportInputBuilder
impl UnwindSafe for DescribeJournalS3ExportInputBuilder
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
Mutably borrows from an owned value. Read more
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>
Converts
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>
Converts
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 moreCreates a shared type from an unshared type.