Class: Aws::CodeDeploy::Types::ListOnPremisesInstancesOutput

Inherits:
Struct
  • Object
show all
Defined in:
gems/aws-sdk-codedeploy/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 Attribute Details

#instance_namesArray<String>

The list of matching on-premises instance names.

Returns:

  • (Array<String>)


3989
3990
3991
3992
3993
3994
# File 'gems/aws-sdk-codedeploy/lib/aws-sdk-codedeploy/types.rb', line 3989

class ListOnPremisesInstancesOutput < Struct.new(
  :instance_names,
  :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 on-premises instances call to return the next set of on-premises instances in the list.

Returns:

  • (String)


3989
3990
3991
3992
3993
3994
# File 'gems/aws-sdk-codedeploy/lib/aws-sdk-codedeploy/types.rb', line 3989

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