Struct aws_sdk_codedeploy::input::ListDeploymentInstancesInput [−][src]
#[non_exhaustive]pub struct ListDeploymentInstancesInput {
pub deployment_id: Option<String>,
pub next_token: Option<String>,
pub instance_status_filter: Option<Vec<InstanceStatus>>,
pub instance_type_filter: Option<Vec<InstanceType>>,
}
Expand description
Represents the input of a ListDeploymentInstances
operation.
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>
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.
instance_status_filter: Option<Vec<InstanceStatus>>
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<InstanceType>>
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.
Implementations
pub async fn make_operation(
&self,
_config: &Config
) -> Result<Operation<ListDeploymentInstances, AwsErrorRetryPolicy>, BuildError>
pub async fn make_operation(
&self,
_config: &Config
) -> Result<Operation<ListDeploymentInstances, AwsErrorRetryPolicy>, BuildError>
Consumes the builder and constructs an Operation<ListDeploymentInstances
>
Creates a new builder-style object to manufacture ListDeploymentInstancesInput
The unique ID of a deployment.
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.
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.
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.
Trait Implementations
This method tests for self
and other
values to be equal, and is used
by ==
. Read more
This method tests for !=
.
Auto Trait Implementations
impl Send for ListDeploymentInstancesInput
impl Sync for ListDeploymentInstancesInput
impl Unpin for ListDeploymentInstancesInput
impl UnwindSafe for ListDeploymentInstancesInput
Blanket Implementations
Mutably borrows from an owned value. Read more
Attaches the provided Subscriber
to this type, returning a
WithDispatch
wrapper. Read more
Attaches the current default Subscriber
to this type, returning a
WithDispatch
wrapper. Read more