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>)


3810
3811
3812
3813
3814
3815
# File 'gems/aws-sdk-codedeploy/lib/aws-sdk-codedeploy/types.rb', line 3810

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)


3810
3811
3812
3813
3814
3815
# File 'gems/aws-sdk-codedeploy/lib/aws-sdk-codedeploy/types.rb', line 3810

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