Struct aws_sdk_rds::operation::describe_export_tasks::builders::DescribeExportTasksOutputBuilder
source · #[non_exhaustive]pub struct DescribeExportTasksOutputBuilder { /* private fields */ }Expand description
A builder for DescribeExportTasksOutput.
Implementations§
source§impl DescribeExportTasksOutputBuilder
impl DescribeExportTasksOutputBuilder
sourcepub fn marker(self, input: impl Into<String>) -> Self
pub fn marker(self, input: impl Into<String>) -> Self
A pagination token that can be used in a later DescribeExportTasks request. A marker is used for pagination to identify the location to begin output for the next response of DescribeExportTasks.
sourcepub fn set_marker(self, input: Option<String>) -> Self
pub fn set_marker(self, input: Option<String>) -> Self
A pagination token that can be used in a later DescribeExportTasks request. A marker is used for pagination to identify the location to begin output for the next response of DescribeExportTasks.
sourcepub fn get_marker(&self) -> &Option<String>
pub fn get_marker(&self) -> &Option<String>
A pagination token that can be used in a later DescribeExportTasks request. A marker is used for pagination to identify the location to begin output for the next response of DescribeExportTasks.
sourcepub fn export_tasks(self, input: ExportTask) -> Self
pub fn export_tasks(self, input: ExportTask) -> Self
Appends an item to export_tasks.
To override the contents of this collection use set_export_tasks.
Information about an export of a snapshot or cluster to Amazon S3.
sourcepub fn set_export_tasks(self, input: Option<Vec<ExportTask>>) -> Self
pub fn set_export_tasks(self, input: Option<Vec<ExportTask>>) -> Self
Information about an export of a snapshot or cluster to Amazon S3.
sourcepub fn get_export_tasks(&self) -> &Option<Vec<ExportTask>>
pub fn get_export_tasks(&self) -> &Option<Vec<ExportTask>>
Information about an export of a snapshot or cluster to Amazon S3.
sourcepub fn build(self) -> DescribeExportTasksOutput
pub fn build(self) -> DescribeExportTasksOutput
Consumes the builder and constructs a DescribeExportTasksOutput.
Trait Implementations§
source§impl Clone for DescribeExportTasksOutputBuilder
impl Clone for DescribeExportTasksOutputBuilder
source§fn clone(&self) -> DescribeExportTasksOutputBuilder
fn clone(&self) -> DescribeExportTasksOutputBuilder
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source. Read moresource§impl Default for DescribeExportTasksOutputBuilder
impl Default for DescribeExportTasksOutputBuilder
source§fn default() -> DescribeExportTasksOutputBuilder
fn default() -> DescribeExportTasksOutputBuilder
source§impl PartialEq for DescribeExportTasksOutputBuilder
impl PartialEq for DescribeExportTasksOutputBuilder
source§fn eq(&self, other: &DescribeExportTasksOutputBuilder) -> bool
fn eq(&self, other: &DescribeExportTasksOutputBuilder) -> bool
self and other values to be equal, and is used
by ==.impl StructuralPartialEq for DescribeExportTasksOutputBuilder
Auto Trait Implementations§
impl Freeze for DescribeExportTasksOutputBuilder
impl RefUnwindSafe for DescribeExportTasksOutputBuilder
impl Send for DescribeExportTasksOutputBuilder
impl Sync for DescribeExportTasksOutputBuilder
impl Unpin for DescribeExportTasksOutputBuilder
impl UnwindSafe for DescribeExportTasksOutputBuilder
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