Class: Aws::CodeDeploy::Types::ListDeploymentInstancesOutput

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

Overview

Represents the output of a ‘ListDeploymentInstances` operation.

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#instances_listArray<String>

A list of instance IDs.

Returns:

  • (Array<String>)


3757
3758
3759
3760
3761
3762
# File 'lib/aws-sdk-codedeploy/types.rb', line 3757

class ListDeploymentInstancesOutput < Struct.new(
  :instances_list,
  :next_token)
  SENSITIVE = []
  include Aws::Structure
end

#next_tokenString

If a large amount of information is returned, an identifier is also returned. It can be used in a subsequent list deployment instances call to return the next set of deployment instances in the list.

Returns:

  • (String)


3757
3758
3759
3760
3761
3762
# File 'lib/aws-sdk-codedeploy/types.rb', line 3757

class ListDeploymentInstancesOutput < Struct.new(
  :instances_list,
  :next_token)
  SENSITIVE = []
  include Aws::Structure
end