#[non_exhaustive]pub struct ListDeploymentInstancesInput { /* private fields */ }
Expand description
Represents the input of a ListDeploymentInstances
operation.
Implementations§
source§impl ListDeploymentInstancesInput
impl ListDeploymentInstancesInput
sourcepub async fn make_operation(
&self,
_config: &Config
) -> Result<Operation<ListDeploymentInstances, AwsResponseRetryClassifier>, BuildError>
pub async fn make_operation(
&self,
_config: &Config
) -> Result<Operation<ListDeploymentInstances, AwsResponseRetryClassifier>, BuildError>
Consumes the builder and constructs an Operation<ListDeploymentInstances
>
sourcepub fn builder() -> Builder
pub fn builder() -> Builder
Creates a new builder-style object to manufacture ListDeploymentInstancesInput
.
source§impl ListDeploymentInstancesInput
impl ListDeploymentInstancesInput
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>
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.
sourcepub fn instance_status_filter(&self) -> Option<&[InstanceStatus]>
pub fn instance_status_filter(&self) -> Option<&[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.
sourcepub fn instance_type_filter(&self) -> Option<&[InstanceType]>
pub fn instance_type_filter(&self) -> Option<&[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.
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 PartialEq<ListDeploymentInstancesInput> for ListDeploymentInstancesInput
impl PartialEq<ListDeploymentInstancesInput> 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 ==
.