pub struct ListDeploymentTargetsInput {
pub deployment_id: Option<String>,
pub next_token: Option<String>,
pub target_filters: Option<HashMap<String, Vec<String>>>,
}
Fields§
§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<String, 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 duplicate 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 Default for ListDeploymentTargetsInput
impl Default for ListDeploymentTargetsInput
Source§fn default() -> ListDeploymentTargetsInput
fn default() -> ListDeploymentTargetsInput
Returns the “default value” for a type. Read more
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
Mutably borrows from an owned value. Read more