Class: Aws::AppConfig::Types::DeploymentParameters

Inherits:
Struct
  • Object
show all
Includes:
Structure
Defined in:
lib/aws-sdk-appconfig/types.rb

Overview

Optional deployment parameters for an experiment run, including extension parameters and tags.

Constant Summary collapse

SENSITIVE =
[:dynamic_extension_parameters]

Instance Attribute Summary collapse

Instance Attribute Details

#dynamic_extension_parametersHash<String,String>

A map of extension parameters for the deployment.

Returns:

  • (Hash<String,String>)


1391
1392
1393
1394
1395
1396
# File 'lib/aws-sdk-appconfig/types.rb', line 1391

class DeploymentParameters < Struct.new(
  :dynamic_extension_parameters,
  :tags)
  SENSITIVE = [:dynamic_extension_parameters]
  include Aws::Structure
end

#tagsHash<String,String>

The tags to assign to the deployment.

Returns:

  • (Hash<String,String>)


1391
1392
1393
1394
1395
1396
# File 'lib/aws-sdk-appconfig/types.rb', line 1391

class DeploymentParameters < Struct.new(
  :dynamic_extension_parameters,
  :tags)
  SENSITIVE = [:dynamic_extension_parameters]
  include Aws::Structure
end