#[non_exhaustive]pub struct ListSchedulesInput {
pub group_name: Option<String>,
pub name_prefix: Option<String>,
pub state: Option<ScheduleState>,
pub next_token: Option<String>,
pub max_results: Option<i32>,
}Fields (Non-exhaustive)§
This struct is marked as non-exhaustive
Struct { .. } syntax; cannot be matched against without a wildcard ..; and struct update syntax will not work.group_name: Option<String>If specified, only lists the schedules whose associated schedule group matches the given filter.
name_prefix: Option<String>Schedule name prefix to return the filtered list of resources.
state: Option<ScheduleState>If specified, only lists the schedules whose current state matches the given filter.
next_token: Option<String>The token returned by a previous call to retrieve the next set of results.
max_results: Option<i32>If specified, limits the number of results returned by this operation. The operation also returns a NextToken which you can use in a subsequent operation to retrieve the next set of results.
Implementations§
source§impl ListSchedulesInput
impl ListSchedulesInput
sourcepub fn group_name(&self) -> Option<&str>
pub fn group_name(&self) -> Option<&str>
If specified, only lists the schedules whose associated schedule group matches the given filter.
sourcepub fn name_prefix(&self) -> Option<&str>
pub fn name_prefix(&self) -> Option<&str>
Schedule name prefix to return the filtered list of resources.
sourcepub fn state(&self) -> Option<&ScheduleState>
pub fn state(&self) -> Option<&ScheduleState>
If specified, only lists the schedules whose current state matches the given filter.
sourcepub fn next_token(&self) -> Option<&str>
pub fn next_token(&self) -> Option<&str>
The token returned by a previous call to retrieve the next set of results.
sourcepub fn max_results(&self) -> Option<i32>
pub fn max_results(&self) -> Option<i32>
If specified, limits the number of results returned by this operation. The operation also returns a NextToken which you can use in a subsequent operation to retrieve the next set of results.
source§impl ListSchedulesInput
impl ListSchedulesInput
sourcepub fn builder() -> ListSchedulesInputBuilder
pub fn builder() -> ListSchedulesInputBuilder
Creates a new builder-style object to manufacture ListSchedulesInput.
Trait Implementations§
source§impl Clone for ListSchedulesInput
impl Clone for ListSchedulesInput
source§fn clone(&self) -> ListSchedulesInput
fn clone(&self) -> ListSchedulesInput
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source. Read moresource§impl Debug for ListSchedulesInput
impl Debug for ListSchedulesInput
source§impl PartialEq<ListSchedulesInput> for ListSchedulesInput
impl PartialEq<ListSchedulesInput> for ListSchedulesInput
source§fn eq(&self, other: &ListSchedulesInput) -> bool
fn eq(&self, other: &ListSchedulesInput) -> bool
self and other values to be equal, and is used
by ==.