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

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

Overview

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)


1864
1865
1866
1867
1868
1869
# File 'lib/aws-sdk-configservice/types.rb', line 1864

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

#parameter_valueString

Another part of the key-value pair.

Returns:

  • (String)


1864
1865
1866
1867
1868
1869
# File 'lib/aws-sdk-configservice/types.rb', line 1864

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