Class: Aws::ConfigService::Types::RemediationParameterValue

Inherits:
Struct
  • Object
show all
Defined in:
gems/aws-sdk-configservice/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

Instance Attribute Details

#resource_valueTypes::ResourceValue

The value is dynamic and changes at run-time.



7853
7854
7855
7856
7857
7858
# File 'gems/aws-sdk-configservice/lib/aws-sdk-configservice/types.rb', line 7853

class RemediationParameterValue < Struct.new(
  :resource_value,
  :static_value)
  SENSITIVE = []
  include Aws::Structure
end

#static_valueTypes::StaticValue

The value is static and does not change at run-time.

Returns:



7853
7854
7855
7856
7857
7858
# File 'gems/aws-sdk-configservice/lib/aws-sdk-configservice/types.rb', line 7853

class RemediationParameterValue < Struct.new(
  :resource_value,
  :static_value)
  SENSITIVE = []
  include Aws::Structure
end