#[non_exhaustive]pub struct ListDeploymentTargetsInput {
pub deployment_id: Option<String>,
pub next_token: Option<String>,
pub target_filters: Option<HashMap<TargetFilterName, Vec<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.deployment_id: Option<String>
The unique ID of a deployment.
next_token: Option<String>
A token identifier returned from the previous ListDeploymentTargets
call. It can be used to return the next set of deployment targets in the list.
target_filters: Option<HashMap<TargetFilterName, Vec<String>>>
A key used to filter the returned targets. The two valid values are:
-
TargetStatus
- ATargetStatus
filter string can beFailed
,InProgress
,Pending
,Ready
,Skipped
,Succeeded
, orUnknown
. -
ServerInstanceLabel
- AServerInstanceLabel
filter string can beBlue
orGreen
.
Implementations§
source§impl ListDeploymentTargetsInput
impl ListDeploymentTargetsInput
sourcepub fn deployment_id(&self) -> Option<&str>
pub fn deployment_id(&self) -> Option<&str>
The unique ID of a deployment.
sourcepub fn next_token(&self) -> Option<&str>
pub fn next_token(&self) -> Option<&str>
A token identifier returned from the previous ListDeploymentTargets
call. It can be used to return the next set of deployment targets in the list.
sourcepub fn target_filters(&self) -> Option<&HashMap<TargetFilterName, Vec<String>>>
pub fn target_filters(&self) -> Option<&HashMap<TargetFilterName, Vec<String>>>
A key used to filter the returned targets. The two valid values are:
-
TargetStatus
- ATargetStatus
filter string can beFailed
,InProgress
,Pending
,Ready
,Skipped
,Succeeded
, orUnknown
. -
ServerInstanceLabel
- AServerInstanceLabel
filter string can beBlue
orGreen
.
source§impl ListDeploymentTargetsInput
impl ListDeploymentTargetsInput
sourcepub fn builder() -> ListDeploymentTargetsInputBuilder
pub fn builder() -> ListDeploymentTargetsInputBuilder
Creates a new builder-style object to manufacture ListDeploymentTargetsInput
.
Trait Implementations§
source§impl Clone for ListDeploymentTargetsInput
impl Clone for ListDeploymentTargetsInput
source§fn clone(&self) -> ListDeploymentTargetsInput
fn clone(&self) -> ListDeploymentTargetsInput
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moresource§impl Debug for ListDeploymentTargetsInput
impl Debug for ListDeploymentTargetsInput
source§impl PartialEq for ListDeploymentTargetsInput
impl PartialEq for ListDeploymentTargetsInput
source§fn eq(&self, other: &ListDeploymentTargetsInput) -> bool
fn eq(&self, other: &ListDeploymentTargetsInput) -> bool
self
and other
values to be equal, and is used
by ==
.impl StructuralPartialEq for ListDeploymentTargetsInput
Auto Trait Implementations§
impl Freeze for ListDeploymentTargetsInput
impl RefUnwindSafe for ListDeploymentTargetsInput
impl Send for ListDeploymentTargetsInput
impl Sync for ListDeploymentTargetsInput
impl Unpin for ListDeploymentTargetsInput
impl UnwindSafe for ListDeploymentTargetsInput
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§default unsafe fn clone_to_uninit(&self, dst: *mut T)
default 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