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

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

Overview

Note:

When making an API call, you may pass RemediationParameterValue data as a hash:

{
  resource_value: {
    value: "RESOURCE_ID", # required, accepts RESOURCE_ID
  },
  static_value: {
    values: ["StringWithCharLimit256"], # required
  },
}

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.



7615
7616
7617
7618
7619
7620
# File 'lib/aws-sdk-configservice/types.rb', line 7615

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:



7615
7616
7617
7618
7619
7620
# File 'lib/aws-sdk-configservice/types.rb', line 7615

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