Class: Aws::CodeDeploy::Types::ListDeploymentConfigsOutput
- Inherits:
-
Struct
- Object
- Struct
- Aws::CodeDeploy::Types::ListDeploymentConfigsOutput
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-codedeploy/types.rb
Overview
Represents the output of a ‘ListDeploymentConfigs` operation.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#deployment_configs_list ⇒ Array<String>
A list of deployment configurations, including built-in configurations such as ‘CodeDeployDefault.OneAtATime`.
-
#next_token ⇒ String
If a large amount of information is returned, an identifier is also returned.
Instance Attribute Details
#deployment_configs_list ⇒ Array<String>
A list of deployment configurations, including built-in configurations such as ‘CodeDeployDefault.OneAtATime`.
3640 3641 3642 3643 3644 3645 |
# File 'lib/aws-sdk-codedeploy/types.rb', line 3640 class ListDeploymentConfigsOutput < Struct.new( :deployment_configs_list, :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 configurations call to return the next set of deployment configurations in the list.
3640 3641 3642 3643 3644 3645 |
# File 'lib/aws-sdk-codedeploy/types.rb', line 3640 class ListDeploymentConfigsOutput < Struct.new( :deployment_configs_list, :next_token) SENSITIVE = [] include Aws::Structure end |