Class: Aws::CodeDeploy::Types::ListDeploymentConfigsOutput

Inherits:
Struct
  • Object
show all
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

Instance Attribute Details

#deployment_configs_listArray<String>

A list of deployment configurations, including built-in configurations such as ‘CodeDeployDefault.OneAtATime`.

Returns:

  • (Array<String>)


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_tokenString

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.

Returns:

  • (String)


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