Class: Aws::DAX::Types::CreateParameterGroupRequest

Inherits:
Struct
  • Object
show all
Includes:
Structure
Defined in:
lib/aws-sdk-dax/types.rb

Overview

Note:

When making an API call, you may pass CreateParameterGroupRequest data as a hash:

{
  parameter_group_name: "String", # required
  description: "String",
}

Instance Attribute Summary collapse

Instance Attribute Details

#descriptionString

A description of the parameter group.

Returns:

  • (String)


309
310
311
312
313
# File 'lib/aws-sdk-dax/types.rb', line 309

class CreateParameterGroupRequest < Struct.new(
  :parameter_group_name,
  :description)
  include Aws::Structure
end

#parameter_group_nameString

The name of the parameter group to apply to all of the clusters in this replication group.

Returns:

  • (String)


309
310
311
312
313
# File 'lib/aws-sdk-dax/types.rb', line 309

class CreateParameterGroupRequest < Struct.new(
  :parameter_group_name,
  :description)
  include Aws::Structure
end