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
2501 2502 2503 2504 2505 2506 2507 2508 |
# File 'lib/aws-sdk-memorydb/types.rb', line 2501 class ParameterGroup < Struct.new( :name, :family, :description, :arn) SENSITIVE = [] include Aws::Structure end |
#description ⇒ String
A description of the parameter group
2501 2502 2503 2504 2505 2506 2507 2508 |
# File 'lib/aws-sdk-memorydb/types.rb', line 2501 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.
2501 2502 2503 2504 2505 2506 2507 2508 |
# File 'lib/aws-sdk-memorydb/types.rb', line 2501 class ParameterGroup < Struct.new( :name, :family, :description, :arn) SENSITIVE = [] include Aws::Structure end |
#name ⇒ String
The name of the parameter group
2501 2502 2503 2504 2505 2506 2507 2508 |
# File 'lib/aws-sdk-memorydb/types.rb', line 2501 class ParameterGroup < Struct.new( :name, :family, :description, :arn) SENSITIVE = [] include Aws::Structure end |