Class: Aws::ConfigService::Types::ConformancePackInputParameter
- Inherits:
-
Struct
- Object
- Struct
- Aws::ConfigService::Types::ConformancePackInputParameter
- Defined in:
- gems/aws-sdk-configservice/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
-
#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.
1814 1815 1816 1817 1818 1819 |
# File 'gems/aws-sdk-configservice/lib/aws-sdk-configservice/types.rb', line 1814 class ConformancePackInputParameter < Struct.new( :parameter_name, :parameter_value) SENSITIVE = [] include Aws::Structure end |
#parameter_value ⇒ String
Another part of the key-value pair.
1814 1815 1816 1817 1818 1819 |
# File 'gems/aws-sdk-configservice/lib/aws-sdk-configservice/types.rb', line 1814 class ConformancePackInputParameter < Struct.new( :parameter_name, :parameter_value) SENSITIVE = [] include Aws::Structure end |