#[non_exhaustive]pub struct ListDeploymentsInput {
pub filters: Option<Vec<DeploymentFilter>>,
pub max_results: Option<i32>,
pub next_token: Option<String>,
}
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.filters: Option<Vec<DeploymentFilter>>
Filters to scope the results. The following filters are supported:
-
WORKLOAD_NAME
-
DEPLOYMENT_STATUS
max_results: Option<i32>
The maximum number of items to return for this request. To get the next page of items, make another request with the token returned in the output.
next_token: Option<String>
The token returned from a previous paginated request. Pagination continues from the end of the items returned by the previous request.
Implementations§
source§impl ListDeploymentsInput
impl ListDeploymentsInput
sourcepub fn filters(&self) -> &[DeploymentFilter]
pub fn filters(&self) -> &[DeploymentFilter]
Filters to scope the results. The following filters are supported:
-
WORKLOAD_NAME
-
DEPLOYMENT_STATUS
If no value was sent for this field, a default will be set. If you want to determine if no value was sent, use .filters.is_none()
.
sourcepub fn max_results(&self) -> Option<i32>
pub fn max_results(&self) -> Option<i32>
The maximum number of items to return for this request. To get the next page of items, make another request with the token returned in the output.
sourcepub fn next_token(&self) -> Option<&str>
pub fn next_token(&self) -> Option<&str>
The token returned from a previous paginated request. Pagination continues from the end of the items returned by the previous request.
source§impl ListDeploymentsInput
impl ListDeploymentsInput
sourcepub fn builder() -> ListDeploymentsInputBuilder
pub fn builder() -> ListDeploymentsInputBuilder
Creates a new builder-style object to manufacture ListDeploymentsInput
.
Trait Implementations§
source§impl Clone for ListDeploymentsInput
impl Clone for ListDeploymentsInput
source§fn clone(&self) -> ListDeploymentsInput
fn clone(&self) -> ListDeploymentsInput
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moresource§impl Debug for ListDeploymentsInput
impl Debug for ListDeploymentsInput
source§impl PartialEq for ListDeploymentsInput
impl PartialEq for ListDeploymentsInput
source§fn eq(&self, other: &ListDeploymentsInput) -> bool
fn eq(&self, other: &ListDeploymentsInput) -> bool
self
and other
values to be equal, and is used
by ==
.