Class: Aws::CodeDeploy::Types::ListDeploymentInstancesOutput
- Inherits:
-
Struct
- Object
- Struct
- Aws::CodeDeploy::Types::ListDeploymentInstancesOutput
- 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
-
#instances_list ⇒ Array<String>
A list of instance IDs.
-
#next_token ⇒ String
If a large amount of information is returned, an identifier is also returned.
Instance Attribute Details
#instances_list ⇒ Array<String>
A list of instance IDs.
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_token ⇒ String
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.
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 |