#[non_exhaustive]pub struct ListEdgeDeploymentPlansInput { /* private fields */ }
Implementations§
source§impl ListEdgeDeploymentPlansInput
impl ListEdgeDeploymentPlansInput
sourcepub async fn make_operation(
&self,
_config: &Config
) -> Result<Operation<ListEdgeDeploymentPlans, AwsResponseRetryClassifier>, BuildError>
pub async fn make_operation(
&self,
_config: &Config
) -> Result<Operation<ListEdgeDeploymentPlans, AwsResponseRetryClassifier>, BuildError>
Consumes the builder and constructs an Operation<ListEdgeDeploymentPlans
>
sourcepub fn builder() -> Builder
pub fn builder() -> Builder
Creates a new builder-style object to manufacture ListEdgeDeploymentPlansInput
.
source§impl ListEdgeDeploymentPlansInput
impl ListEdgeDeploymentPlansInput
sourcepub fn next_token(&self) -> Option<&str>
pub fn next_token(&self) -> Option<&str>
The response from the last list when returning a list large enough to need tokening.
sourcepub fn max_results(&self) -> Option<i32>
pub fn max_results(&self) -> Option<i32>
The maximum number of results to select (50 by default).
sourcepub fn creation_time_after(&self) -> Option<&DateTime>
pub fn creation_time_after(&self) -> Option<&DateTime>
Selects edge deployment plans created after this time.
sourcepub fn creation_time_before(&self) -> Option<&DateTime>
pub fn creation_time_before(&self) -> Option<&DateTime>
Selects edge deployment plans created before this time.
sourcepub fn last_modified_time_after(&self) -> Option<&DateTime>
pub fn last_modified_time_after(&self) -> Option<&DateTime>
Selects edge deployment plans that were last updated after this time.
sourcepub fn last_modified_time_before(&self) -> Option<&DateTime>
pub fn last_modified_time_before(&self) -> Option<&DateTime>
Selects edge deployment plans that were last updated before this time.
sourcepub fn name_contains(&self) -> Option<&str>
pub fn name_contains(&self) -> Option<&str>
Selects edge deployment plans with names containing this name.
sourcepub fn device_fleet_name_contains(&self) -> Option<&str>
pub fn device_fleet_name_contains(&self) -> Option<&str>
Selects edge deployment plans with a device fleet name containing this name.
sourcepub fn sort_by(&self) -> Option<&ListEdgeDeploymentPlansSortBy>
pub fn sort_by(&self) -> Option<&ListEdgeDeploymentPlansSortBy>
The column by which to sort the edge deployment plans. Can be one of NAME
, DEVICEFLEETNAME
, CREATIONTIME
, LASTMODIFIEDTIME
.
sourcepub fn sort_order(&self) -> Option<&SortOrder>
pub fn sort_order(&self) -> Option<&SortOrder>
The direction of the sorting (ascending or descending).
Trait Implementations§
source§impl Clone for ListEdgeDeploymentPlansInput
impl Clone for ListEdgeDeploymentPlansInput
source§fn clone(&self) -> ListEdgeDeploymentPlansInput
fn clone(&self) -> ListEdgeDeploymentPlansInput
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moresource§impl Debug for ListEdgeDeploymentPlansInput
impl Debug for ListEdgeDeploymentPlansInput
source§impl PartialEq<ListEdgeDeploymentPlansInput> for ListEdgeDeploymentPlansInput
impl PartialEq<ListEdgeDeploymentPlansInput> for ListEdgeDeploymentPlansInput
source§fn eq(&self, other: &ListEdgeDeploymentPlansInput) -> bool
fn eq(&self, other: &ListEdgeDeploymentPlansInput) -> bool
self
and other
values to be equal, and is used
by ==
.