Class: Aws::CodeDeploy::Types::ListDeploymentsOutput

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

Overview

Represents the output of a ListDeployments operation.

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#deploymentsArray<String>

A list of deployment IDs.

Returns:

  • (Array<String>)


3897
3898
3899
3900
3901
3902
# File 'gems/aws-sdk-codedeploy/lib/aws-sdk-codedeploy/types.rb', line 3897

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

Returns:

  • (String)


3897
3898
3899
3900
3901
3902
# File 'gems/aws-sdk-codedeploy/lib/aws-sdk-codedeploy/types.rb', line 3897

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