Class: Aws::ConfigService::Types::ConformancePackInputParameter
- Inherits:
-
Struct
- Object
- Struct
- Aws::ConfigService::Types::ConformancePackInputParameter
- 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
-
#parameter_name ⇒ String
One part of a key-value pair.
-
#parameter_value ⇒ String
Another part of the key-value pair.
Instance Attribute Details
#parameter_name ⇒ String
One part of a key-value pair.
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_value ⇒ String
Another part of the key-value pair.
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 |