Class: Aws::CodeDeploy::Types::ListApplicationsOutput

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

Overview

Represents the output of a ListApplications operation.

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#applicationsArray<String>

A list of application names.

Returns:

  • (Array<String>)


3601
3602
3603
3604
3605
3606
# File 'gems/aws-sdk-codedeploy/lib/aws-sdk-codedeploy/types.rb', line 3601

class ListApplicationsOutput < Struct.new(
  :applications,
  :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 applications call to return the next set of applications in the list.

Returns:

  • (String)


3601
3602
3603
3604
3605
3606
# File 'gems/aws-sdk-codedeploy/lib/aws-sdk-codedeploy/types.rb', line 3601

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