Class: Aws::AppConfig::Types::DeploymentParameters
- Inherits:
-
Struct
- Object
- Struct
- Aws::AppConfig::Types::DeploymentParameters
- 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
-
#dynamic_extension_parameters ⇒ Hash<String,String>
A map of extension parameters for the deployment.
-
#tags ⇒ Hash<String,String>
The tags to assign to the deployment.
Instance Attribute Details
#dynamic_extension_parameters ⇒ Hash<String,String>
A map of extension parameters for the deployment.
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 |
#tags ⇒ Hash<String,String>
The tags to assign to the deployment.
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 |