#[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 ==
.