Class: Aws::CodeDeploy::Types::ListDeploymentGroupsOutput
- Inherits:
-
Struct
- Object
- Struct
- Aws::CodeDeploy::Types::ListDeploymentGroupsOutput
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-codedeploy/types.rb
Overview
Represents the output of a ‘ListDeploymentGroups` operation.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#application_name ⇒ String
The application name.
-
#deployment_groups ⇒ Array<String>
A list of deployment group names.
-
#next_token ⇒ String
If a large amount of information is returned, an identifier is also returned.
Instance Attribute Details
#application_name ⇒ String
The application name.
3687 3688 3689 3690 3691 3692 3693 |
# File 'lib/aws-sdk-codedeploy/types.rb', line 3687 class ListDeploymentGroupsOutput < Struct.new( :application_name, :deployment_groups, :next_token) SENSITIVE = [] include Aws::Structure end |
#deployment_groups ⇒ Array<String>
A list of deployment group names.
3687 3688 3689 3690 3691 3692 3693 |
# File 'lib/aws-sdk-codedeploy/types.rb', line 3687 class ListDeploymentGroupsOutput < Struct.new( :application_name, :deployment_groups, :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 deployment groups call to return the next set of deployment groups in the list.
3687 3688 3689 3690 3691 3692 3693 |
# File 'lib/aws-sdk-codedeploy/types.rb', line 3687 class ListDeploymentGroupsOutput < Struct.new( :application_name, :deployment_groups, :next_token) SENSITIVE = [] include Aws::Structure end |