Struct aws_sdk_applicationdiscovery::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 exports_info(self, input: ExportInfo) -> Self
pub fn exports_info(self, input: ExportInfo) -> Self
Appends an item to exports_info.
To override the contents of this collection use set_exports_info.
Contains one or more sets of export request details. When the status of a request is SUCCEEDED, the response includes a URL for an Amazon S3 bucket where you can view the data in a CSV file.
sourcepub fn set_exports_info(self, input: Option<Vec<ExportInfo>>) -> Self
pub fn set_exports_info(self, input: Option<Vec<ExportInfo>>) -> Self
Contains one or more sets of export request details. When the status of a request is SUCCEEDED, the response includes a URL for an Amazon S3 bucket where you can view the data in a CSV file.
sourcepub fn get_exports_info(&self) -> &Option<Vec<ExportInfo>>
pub fn get_exports_info(&self) -> &Option<Vec<ExportInfo>>
Contains one or more sets of export request details. When the status of a request is SUCCEEDED, the response includes a URL for an Amazon S3 bucket where you can view the data in a CSV file.
sourcepub fn next_token(self, input: impl Into<String>) -> Self
pub fn next_token(self, input: impl Into<String>) -> Self
The nextToken value to include in a future DescribeExportTasks request. When the results of a DescribeExportTasks request exceed maxResults, this value can be used to retrieve the next page of results. This value is null when there are no more results to return.
sourcepub fn set_next_token(self, input: Option<String>) -> Self
pub fn set_next_token(self, input: Option<String>) -> Self
The nextToken value to include in a future DescribeExportTasks request. When the results of a DescribeExportTasks request exceed maxResults, this value can be used to retrieve the next page of results. This value is null when there are no more results to return.
sourcepub fn get_next_token(&self) -> &Option<String>
pub fn get_next_token(&self) -> &Option<String>
The nextToken value to include in a future DescribeExportTasks request. When the results of a DescribeExportTasks request exceed maxResults, this value can be used to retrieve the next page of results. This value is null when there are no more results to return.
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