Class: Aws::ConfigService::Types::ConformancePackInputParameter

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 ConformancePackInputParameter data as a hash:

{
  parameter_name: "ParameterName", # required
  parameter_value: "ParameterValue", # required
}

Input parameters in the form of key-value pairs for the conformance pack, both of which you define. Keys can have a maximum character length of 255 characters, and values can have a maximum length of 4096 characters.

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#parameter_nameString

One part of a key-value pair.

Returns:

  • (String)


1776
1777
1778
1779
1780
1781
# File 'lib/aws-sdk-configservice/types.rb', line 1776

class ConformancePackInputParameter < Struct.new(
  :parameter_name,
  :parameter_value)
  SENSITIVE = []
  include Aws::Structure
end

#parameter_valueString

Another part of the key-value pair.

Returns:

  • (String)


1776
1777
1778
1779
1780
1781
# File 'lib/aws-sdk-configservice/types.rb', line 1776

class ConformancePackInputParameter < Struct.new(
  :parameter_name,
  :parameter_value)
  SENSITIVE = []
  include Aws::Structure
end