You are viewing documentation for version 2 of the AWS SDK for Ruby. Version 3 documentation can be found here.

Class: Aws::CodeDeploy::Types::ListDeploymentTargetsInput

Inherits:
Struct
  • Object
show all
Defined in:
(unknown)

Overview

Note:

When passing ListDeploymentTargetsInput as input to an Aws::Client method, you can use a vanilla Hash:

{
  deployment_id: "DeploymentId",
  next_token: "NextToken",
  target_filters: {
    "TargetStatus" => ["FilterValue"],
  },
}

Instance Attribute Summary collapse

Instance Attribute Details

#deployment_idString

The unique ID of a deployment.

Returns:

  • (String)

    The unique ID of a deployment.

#next_tokenString

A token identifier returned from the previous ListDeploymentTargets call. It can be used to return the next set of deployment targets in the list.

Returns:

  • (String)

    A token identifier returned from the previous ListDeploymentTargets call.

#target_filtersHash<String,Array<String>>

A key used to filter the returned targets. The two valid values are:

  • TargetStatus - A TargetStatus filter string can be Failed, InProgress, Pending, Ready, Skipped, Succeeded, or Unknown.

  • ServerInstanceLabel - A ServerInstanceLabel filter string can be Blue or Green.

Returns:

  • (Hash<String,Array<String>>)

    A key used to filter the returned targets.