Class: Aws::CodeDeploy::Types::ListDeploymentsOutput
- Inherits:
-
Struct
- Object
- Struct
- Aws::CodeDeploy::Types::ListDeploymentsOutput
- 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
-
#deployments ⇒ Array<String>
A list of deployment IDs.
-
#next_token ⇒ String
If a large amount of information is returned, an identifier is also returned.
Instance Attribute Details
#deployments ⇒ Array<String>
A list of deployment IDs.
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_token ⇒ String
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.
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 |