Class: Aws::CodeDeploy::Types::ListDeploymentConfigsOutput
- Inherits:
-
Struct
- Object
- Struct
- Aws::CodeDeploy::Types::ListDeploymentConfigsOutput
- Defined in:
- gems/aws-sdk-codedeploy/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
.
4119 4120 4121 4122 4123 4124 |
# File 'gems/aws-sdk-codedeploy/lib/aws-sdk-codedeploy/types.rb', line 4119 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.
4119 4120 4121 4122 4123 4124 |
# File 'gems/aws-sdk-codedeploy/lib/aws-sdk-codedeploy/types.rb', line 4119 class ListDeploymentConfigsOutput < Struct.new( :deployment_configs_list, :next_token) SENSITIVE = [] include Aws::Structure end |