Class: Aws::MemoryDB::Types::ParameterGroup
- Inherits:
-
Struct
- Object
- Struct
- Aws::MemoryDB::Types::ParameterGroup
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-memorydb/types.rb
Overview
Represents the output of a CreateParameterGroup operation. A parameter group represents a combination of specific values for the parameters that are passed to the engine software during startup.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#arn ⇒ String
The Amazon Resource Name (ARN) of the parameter group.
-
#description ⇒ String
A description of the parameter group.
-
#family ⇒ String
The name of the parameter group family that this parameter group is compatible with.
-
#name ⇒ String
The name of the parameter group.
Instance Attribute Details
#arn ⇒ String
The Amazon Resource Name (ARN) of the parameter group
2224 2225 2226 2227 2228 2229 2230 2231 |
# File 'lib/aws-sdk-memorydb/types.rb', line 2224 class ParameterGroup < Struct.new( :name, :family, :description, :arn) SENSITIVE = [] include Aws::Structure end |
#description ⇒ String
A description of the parameter group
2224 2225 2226 2227 2228 2229 2230 2231 |
# File 'lib/aws-sdk-memorydb/types.rb', line 2224 class ParameterGroup < Struct.new( :name, :family, :description, :arn) SENSITIVE = [] include Aws::Structure end |
#family ⇒ String
The name of the parameter group family that this parameter group is compatible with.
2224 2225 2226 2227 2228 2229 2230 2231 |
# File 'lib/aws-sdk-memorydb/types.rb', line 2224 class ParameterGroup < Struct.new( :name, :family, :description, :arn) SENSITIVE = [] include Aws::Structure end |
#name ⇒ String
The name of the parameter group
2224 2225 2226 2227 2228 2229 2230 2231 |
# File 'lib/aws-sdk-memorydb/types.rb', line 2224 class ParameterGroup < Struct.new( :name, :family, :description, :arn) SENSITIVE = [] include Aws::Structure end |