#[non_exhaustive]pub struct ListDeploymentTargetsInput { /* private fields */ }
Implementations§
source§impl ListDeploymentTargetsInput
impl ListDeploymentTargetsInput
sourcepub async fn make_operation(
&self,
_config: &Config
) -> Result<Operation<ListDeploymentTargets, AwsResponseRetryClassifier>, BuildError>
pub async fn make_operation(
&self,
_config: &Config
) -> Result<Operation<ListDeploymentTargets, AwsResponseRetryClassifier>, BuildError>
Consumes the builder and constructs an Operation<ListDeploymentTargets
>
sourcepub fn builder() -> Builder
pub fn builder() -> Builder
Creates a new builder-style object to manufacture ListDeploymentTargetsInput
.
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
.
Trait Implementations§
source§impl Clone for ListDeploymentTargetsInput
impl Clone for ListDeploymentTargetsInput
source§fn clone(&self) -> ListDeploymentTargetsInput
fn clone(&self) -> ListDeploymentTargetsInput
Returns a copy of the value. Read more
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moresource§impl Debug for ListDeploymentTargetsInput
impl Debug for ListDeploymentTargetsInput
source§impl PartialEq<ListDeploymentTargetsInput> for ListDeploymentTargetsInput
impl PartialEq<ListDeploymentTargetsInput> for ListDeploymentTargetsInput
source§fn eq(&self, other: &ListDeploymentTargetsInput) -> bool
fn eq(&self, other: &ListDeploymentTargetsInput) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.