Class: Aws::ConfigService::Types::RemediationParameterValue
- Inherits:
-
Struct
- Object
- Struct
- Aws::ConfigService::Types::RemediationParameterValue
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-configservice/types.rb
Overview
The value is either a dynamic (resource) value or a static value. You must select either a dynamic value or a static value.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#resource_value ⇒ Types::ResourceValue
The value is dynamic and changes at run-time.
-
#static_value ⇒ Types::StaticValue
The value is static and does not change at run-time.
Instance Attribute Details
#resource_value ⇒ Types::ResourceValue
The value is dynamic and changes at run-time.
8334 8335 8336 8337 8338 8339 |
# File 'lib/aws-sdk-configservice/types.rb', line 8334 class RemediationParameterValue < Struct.new( :resource_value, :static_value) SENSITIVE = [] include Aws::Structure end |
#static_value ⇒ Types::StaticValue
The value is static and does not change at run-time.
8334 8335 8336 8337 8338 8339 |
# File 'lib/aws-sdk-configservice/types.rb', line 8334 class RemediationParameterValue < Struct.new( :resource_value, :static_value) SENSITIVE = [] include Aws::Structure end |