Class: Aws::CodeDeploy::Types::ListDeploymentInstancesInput

Inherits:
Struct
  • Object
show all
Defined in:
gems/aws-sdk-codedeploy/lib/aws-sdk-codedeploy/types.rb

Overview

Represents the input of a ListDeploymentInstances operation.

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#deployment_idString

The unique ID of a deployment.

Returns:

  • (String)


3734
3735
3736
3737
3738
3739
3740
3741
# File 'gems/aws-sdk-codedeploy/lib/aws-sdk-codedeploy/types.rb', line 3734

class ListDeploymentInstancesInput < Struct.new(
  :deployment_id,
  :next_token,
  :instance_status_filter,
  :instance_type_filter)
  SENSITIVE = []
  include Aws::Structure
end

#instance_status_filterArray<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.

Returns:

  • (Array<String>)


3734
3735
3736
3737
3738
3739
3740
3741
# File 'gems/aws-sdk-codedeploy/lib/aws-sdk-codedeploy/types.rb', line 3734

class ListDeploymentInstancesInput < Struct.new(
  :deployment_id,
  :next_token,
  :instance_status_filter,
  :instance_type_filter)
  SENSITIVE = []
  include Aws::Structure
end

#instance_type_filterArray<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.

Returns:

  • (Array<String>)


3734
3735
3736
3737
3738
3739
3740
3741
# File 'gems/aws-sdk-codedeploy/lib/aws-sdk-codedeploy/types.rb', line 3734

class ListDeploymentInstancesInput < Struct.new(
  :deployment_id,
  :next_token,
  :instance_status_filter,
  :instance_type_filter)
  SENSITIVE = []
  include Aws::Structure
end

#next_tokenString

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.

Returns:

  • (String)


3734
3735
3736
3737
3738
3739
3740
3741
# File 'gems/aws-sdk-codedeploy/lib/aws-sdk-codedeploy/types.rb', line 3734

class ListDeploymentInstancesInput < Struct.new(
  :deployment_id,
  :next_token,
  :instance_status_filter,
  :instance_type_filter)
  SENSITIVE = []
  include Aws::Structure
end