Struct aws_sdk_backup::input::ListReportJobsInput
source · #[non_exhaustive]pub struct ListReportJobsInput { /* private fields */ }
Implementations§
source§impl ListReportJobsInput
impl ListReportJobsInput
sourcepub async fn make_operation(
&self,
_config: &Config
) -> Result<Operation<ListReportJobs, AwsResponseRetryClassifier>, BuildError>
pub async fn make_operation(
&self,
_config: &Config
) -> Result<Operation<ListReportJobs, AwsResponseRetryClassifier>, BuildError>
Consumes the builder and constructs an Operation<ListReportJobs
>
sourcepub fn builder() -> Builder
pub fn builder() -> Builder
Creates a new builder-style object to manufacture ListReportJobsInput
.
source§impl ListReportJobsInput
impl ListReportJobsInput
sourcepub fn by_report_plan_name(&self) -> Option<&str>
pub fn by_report_plan_name(&self) -> Option<&str>
Returns only report jobs with the specified report plan name.
sourcepub fn by_creation_before(&self) -> Option<&DateTime>
pub fn by_creation_before(&self) -> Option<&DateTime>
Returns only report jobs that were created before the date and time specified in Unix format and Coordinated Universal Time (UTC). For example, the value 1516925490 represents Friday, January 26, 2018 12:11:30 AM.
sourcepub fn by_creation_after(&self) -> Option<&DateTime>
pub fn by_creation_after(&self) -> Option<&DateTime>
Returns only report jobs that were created after the date and time specified in Unix format and Coordinated Universal Time (UTC). For example, the value 1516925490 represents Friday, January 26, 2018 12:11:30 AM.
sourcepub fn by_status(&self) -> Option<&str>
pub fn by_status(&self) -> Option<&str>
Returns only report jobs that are in the specified status. The statuses are:
CREATED | RUNNING | COMPLETED | FAILED
sourcepub fn max_results(&self) -> Option<i32>
pub fn max_results(&self) -> Option<i32>
The number of desired results from 1 to 1000. Optional. If unspecified, the query will return 1 MB of data.
sourcepub fn next_token(&self) -> Option<&str>
pub fn next_token(&self) -> Option<&str>
An identifier that was returned from the previous call to this operation, which can be used to return the next set of items in the list.
Trait Implementations§
source§impl Clone for ListReportJobsInput
impl Clone for ListReportJobsInput
source§fn clone(&self) -> ListReportJobsInput
fn clone(&self) -> ListReportJobsInput
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moresource§impl Debug for ListReportJobsInput
impl Debug for ListReportJobsInput
source§impl PartialEq<ListReportJobsInput> for ListReportJobsInput
impl PartialEq<ListReportJobsInput> for ListReportJobsInput
source§fn eq(&self, other: &ListReportJobsInput) -> bool
fn eq(&self, other: &ListReportJobsInput) -> bool
self
and other
values to be equal, and is used
by ==
.