#[non_exhaustive]pub struct ListDeploymentTargetsInput { /* private fields */ }
Implementations
sourceimpl 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
.
sourceimpl 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
sourceimpl Clone for ListDeploymentTargetsInput
impl Clone for ListDeploymentTargetsInput
sourcefn clone(&self) -> ListDeploymentTargetsInput
fn clone(&self) -> ListDeploymentTargetsInput
Returns a copy of the value. Read more
1.0.0 · sourcefn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moresourceimpl Debug for ListDeploymentTargetsInput
impl Debug for ListDeploymentTargetsInput
sourceimpl PartialEq<ListDeploymentTargetsInput> for ListDeploymentTargetsInput
impl PartialEq<ListDeploymentTargetsInput> for ListDeploymentTargetsInput
sourcefn eq(&self, other: &ListDeploymentTargetsInput) -> bool
fn eq(&self, other: &ListDeploymentTargetsInput) -> bool
impl StructuralPartialEq for ListDeploymentTargetsInput
Auto Trait Implementations
impl RefUnwindSafe for ListDeploymentTargetsInput
impl Send for ListDeploymentTargetsInput
impl Sync for ListDeploymentTargetsInput
impl Unpin for ListDeploymentTargetsInput
impl UnwindSafe for ListDeploymentTargetsInput
Blanket Implementations
sourceimpl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more