pub struct ListDeploymentInstancesInput {
pub deployment_id: String,
pub instance_status_filter: Option<Vec<String>>,
pub instance_type_filter: Option<Vec<String>>,
pub next_token: Option<String>,
}
Expand description
Represents the input of a ListDeploymentInstances
operation.
Fields§
§deployment_id: String
The unique ID of a deployment.
instance_status_filter: Option<Vec<String>>
A subset of instances to list by status:
-
Pending
: Include those instances with pending deployments. -
InProgress
: Include those instances where deployments are still in progress. -
Succeeded
: Include those instances with successful deployments. -
Failed
: Include those instances with failed deployments. -
Skipped
: Include those instances with skipped deployments. -
Unknown
: Include those instances with deployments in an unknown state.
instance_type_filter: Option<Vec<String>>
The set of instances in a blue/green deployment, either those in the original environment ("BLUE") or those in the replacement environment ("GREEN"), for which you want to view instance information.
next_token: Option<String>
An identifier returned from the previous list deployment instances call. It can be used to return the next set of deployment instances in the list.
Trait Implementations§
Source§impl Clone for ListDeploymentInstancesInput
impl Clone for ListDeploymentInstancesInput
Source§fn clone(&self) -> ListDeploymentInstancesInput
fn clone(&self) -> ListDeploymentInstancesInput
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moreSource§impl Debug for ListDeploymentInstancesInput
impl Debug for ListDeploymentInstancesInput
Source§impl Default for ListDeploymentInstancesInput
impl Default for ListDeploymentInstancesInput
Source§fn default() -> ListDeploymentInstancesInput
fn default() -> ListDeploymentInstancesInput
Source§impl PartialEq for ListDeploymentInstancesInput
impl PartialEq for ListDeploymentInstancesInput
Source§fn eq(&self, other: &ListDeploymentInstancesInput) -> bool
fn eq(&self, other: &ListDeploymentInstancesInput) -> bool
self
and other
values to be equal, and is used by ==
.