Class: Aws::CodeDeploy::Types::ListOnPremisesInstancesOutput
- Inherits:
-
Struct
- Object
- Struct
- Aws::CodeDeploy::Types::ListOnPremisesInstancesOutput
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-codedeploy/types.rb
Overview
Represents the output of the list on-premises instances operation.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#instance_names ⇒ Array<String>
The list of matching on-premises instance names.
-
#next_token ⇒ String
If a large amount of information is returned, an identifier is also returned.
Instance Attribute Details
#instance_names ⇒ Array<String>
The list of matching on-premises instance names.
3989 3990 3991 3992 3993 3994 |
# File 'lib/aws-sdk-codedeploy/types.rb', line 3989 class ListOnPremisesInstancesOutput < Struct.new( :instance_names, :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 on-premises instances call to return the next set of on-premises instances in the list.
3989 3990 3991 3992 3993 3994 |
# File 'lib/aws-sdk-codedeploy/types.rb', line 3989 class ListOnPremisesInstancesOutput < Struct.new( :instance_names, :next_token) SENSITIVE = [] include Aws::Structure end |