#[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
- The name used in deployments. -
DEPLOYMENT_STATUS
-COMPLETED
|CREATING
|DELETE_IN_PROGRESS
|DELETE_INITIATING
|DELETE_FAILED
|DELETED
|FAILED
|IN_PROGRESS
|VALIDATING
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
- The name used in deployments. -
DEPLOYMENT_STATUS
-COMPLETED
|CREATING
|DELETE_IN_PROGRESS
|DELETE_INITIATING
|DELETE_FAILED
|DELETED
|FAILED
|IN_PROGRESS
|VALIDATING
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
impl StructuralPartialEq for ListDeploymentsInput
Auto Trait Implementations§
impl Freeze for ListDeploymentsInput
impl RefUnwindSafe for ListDeploymentsInput
impl Send for ListDeploymentsInput
impl Sync for ListDeploymentsInput
impl Unpin for ListDeploymentsInput
impl UnwindSafe for ListDeploymentsInput
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> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
source§unsafe fn clone_to_uninit(&self, dst: *mut T)
unsafe fn clone_to_uninit(&self, dst: *mut T)
clone_to_uninit
)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