Class: Aws::MemoryDB::Types::Parameter
- Inherits:
-
Struct
- Object
- Struct
- Aws::MemoryDB::Types::Parameter
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-memorydb/types.rb
Overview
Describes an individual setting that controls some aspect of MemoryDB behavior.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#allowed_values ⇒ String
The valid range of values for the parameter.
-
#data_type ⇒ String
The parameter’s data type.
-
#description ⇒ String
A description of the parameter.
-
#minimum_engine_version ⇒ String
The earliest engine version to which the parameter can apply.
-
#name ⇒ String
The name of the parameter.
-
#value ⇒ String
The value of the parameter.
Instance Attribute Details
#allowed_values ⇒ String
The valid range of values for the parameter.
2190 2191 2192 2193 2194 2195 2196 2197 2198 2199 |
# File 'lib/aws-sdk-memorydb/types.rb', line 2190 class Parameter < Struct.new( :name, :value, :description, :data_type, :allowed_values, :minimum_engine_version) SENSITIVE = [] include Aws::Structure end |
#data_type ⇒ String
The parameter’s data type
2190 2191 2192 2193 2194 2195 2196 2197 2198 2199 |
# File 'lib/aws-sdk-memorydb/types.rb', line 2190 class Parameter < Struct.new( :name, :value, :description, :data_type, :allowed_values, :minimum_engine_version) SENSITIVE = [] include Aws::Structure end |
#description ⇒ String
A description of the parameter
2190 2191 2192 2193 2194 2195 2196 2197 2198 2199 |
# File 'lib/aws-sdk-memorydb/types.rb', line 2190 class Parameter < Struct.new( :name, :value, :description, :data_type, :allowed_values, :minimum_engine_version) SENSITIVE = [] include Aws::Structure end |
#minimum_engine_version ⇒ String
The earliest engine version to which the parameter can apply.
2190 2191 2192 2193 2194 2195 2196 2197 2198 2199 |
# File 'lib/aws-sdk-memorydb/types.rb', line 2190 class Parameter < Struct.new( :name, :value, :description, :data_type, :allowed_values, :minimum_engine_version) SENSITIVE = [] include Aws::Structure end |