libZSservicesZSamazonka-memorydbZSamazonka-memorydb
Copyright(c) 2013-2021 Brendan Hay
LicenseMozilla Public License, v. 2.0.
MaintainerBrendan Hay <brendan.g.hay+amazonka@gmail.com>
Stabilityauto-generated
Portabilitynon-portable (GHC extensions)
Safe HaskellNone

Amazonka.MemoryDb.CreateParameterGroup

Description

Creates a new MemoryDB parameter group. A parameter group is a collection of parameters and their values that are applied to all of the nodes in any cluster. For more information, see Configuring engine parameters using parameter groups.

Synopsis

Creating a Request

data CreateParameterGroup Source #

See: newCreateParameterGroup smart constructor.

Constructors

CreateParameterGroup' 

Fields

  • description :: Maybe Text

    An optional description of the parameter group.

  • tags :: Maybe [Tag]

    A list of tags to be added to this resource. A tag is a key-value pair. A tag key must be accompanied by a tag value, although null is accepted.

  • parameterGroupName :: Text

    The name of the parameter group.

  • family :: Text

    The name of the parameter group family that the parameter group can be used with.

Instances

Instances details
Eq CreateParameterGroup Source # 
Instance details

Defined in Amazonka.MemoryDb.CreateParameterGroup

Read CreateParameterGroup Source # 
Instance details

Defined in Amazonka.MemoryDb.CreateParameterGroup

Show CreateParameterGroup Source # 
Instance details

Defined in Amazonka.MemoryDb.CreateParameterGroup

Generic CreateParameterGroup Source # 
Instance details

Defined in Amazonka.MemoryDb.CreateParameterGroup

Associated Types

type Rep CreateParameterGroup :: Type -> Type #

NFData CreateParameterGroup Source # 
Instance details

Defined in Amazonka.MemoryDb.CreateParameterGroup

Methods

rnf :: CreateParameterGroup -> () #

Hashable CreateParameterGroup Source # 
Instance details

Defined in Amazonka.MemoryDb.CreateParameterGroup

ToJSON CreateParameterGroup Source # 
Instance details

Defined in Amazonka.MemoryDb.CreateParameterGroup

AWSRequest CreateParameterGroup Source # 
Instance details

Defined in Amazonka.MemoryDb.CreateParameterGroup

Associated Types

type AWSResponse CreateParameterGroup #

ToHeaders CreateParameterGroup Source # 
Instance details

Defined in Amazonka.MemoryDb.CreateParameterGroup

ToPath CreateParameterGroup Source # 
Instance details

Defined in Amazonka.MemoryDb.CreateParameterGroup

ToQuery CreateParameterGroup Source # 
Instance details

Defined in Amazonka.MemoryDb.CreateParameterGroup

type Rep CreateParameterGroup Source # 
Instance details

Defined in Amazonka.MemoryDb.CreateParameterGroup

type Rep CreateParameterGroup = D1 ('MetaData "CreateParameterGroup" "Amazonka.MemoryDb.CreateParameterGroup" "libZSservicesZSamazonka-memorydbZSamazonka-memorydb" 'False) (C1 ('MetaCons "CreateParameterGroup'" 'PrefixI 'True) ((S1 ('MetaSel ('Just "description") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe Text)) :*: S1 ('MetaSel ('Just "tags") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe [Tag]))) :*: (S1 ('MetaSel ('Just "parameterGroupName") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 Text) :*: S1 ('MetaSel ('Just "family") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 Text))))
type AWSResponse CreateParameterGroup Source # 
Instance details

Defined in Amazonka.MemoryDb.CreateParameterGroup

newCreateParameterGroup Source #

Create a value of CreateParameterGroup with all optional fields omitted.

Use generic-lens or optics to modify other optional fields.

The following record fields are available, with the corresponding lenses provided for backwards compatibility:

$sel:description:CreateParameterGroup', createParameterGroup_description - An optional description of the parameter group.

$sel:tags:CreateParameterGroup', createParameterGroup_tags - A list of tags to be added to this resource. A tag is a key-value pair. A tag key must be accompanied by a tag value, although null is accepted.

$sel:parameterGroupName:CreateParameterGroup', createParameterGroup_parameterGroupName - The name of the parameter group.

$sel:family:CreateParameterGroup', createParameterGroup_family - The name of the parameter group family that the parameter group can be used with.

Request Lenses

createParameterGroup_description :: Lens' CreateParameterGroup (Maybe Text) Source #

An optional description of the parameter group.

createParameterGroup_tags :: Lens' CreateParameterGroup (Maybe [Tag]) Source #

A list of tags to be added to this resource. A tag is a key-value pair. A tag key must be accompanied by a tag value, although null is accepted.

createParameterGroup_family :: Lens' CreateParameterGroup Text Source #

The name of the parameter group family that the parameter group can be used with.

Destructuring the Response

data CreateParameterGroupResponse Source #

See: newCreateParameterGroupResponse smart constructor.

Constructors

CreateParameterGroupResponse' 

Fields

Instances

Instances details
Eq CreateParameterGroupResponse Source # 
Instance details

Defined in Amazonka.MemoryDb.CreateParameterGroup

Read CreateParameterGroupResponse Source # 
Instance details

Defined in Amazonka.MemoryDb.CreateParameterGroup

Show CreateParameterGroupResponse Source # 
Instance details

Defined in Amazonka.MemoryDb.CreateParameterGroup

Generic CreateParameterGroupResponse Source # 
Instance details

Defined in Amazonka.MemoryDb.CreateParameterGroup

Associated Types

type Rep CreateParameterGroupResponse :: Type -> Type #

NFData CreateParameterGroupResponse Source # 
Instance details

Defined in Amazonka.MemoryDb.CreateParameterGroup

type Rep CreateParameterGroupResponse Source # 
Instance details

Defined in Amazonka.MemoryDb.CreateParameterGroup

type Rep CreateParameterGroupResponse = D1 ('MetaData "CreateParameterGroupResponse" "Amazonka.MemoryDb.CreateParameterGroup" "libZSservicesZSamazonka-memorydbZSamazonka-memorydb" 'False) (C1 ('MetaCons "CreateParameterGroupResponse'" 'PrefixI 'True) (S1 ('MetaSel ('Just "parameterGroup") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe ParameterGroup)) :*: S1 ('MetaSel ('Just "httpStatus") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 Int)))

newCreateParameterGroupResponse Source #

Create a value of CreateParameterGroupResponse with all optional fields omitted.

Use generic-lens or optics to modify other optional fields.

The following record fields are available, with the corresponding lenses provided for backwards compatibility:

$sel:parameterGroup:CreateParameterGroupResponse', createParameterGroupResponse_parameterGroup - The newly-created parameter group.

$sel:httpStatus:CreateParameterGroupResponse', createParameterGroupResponse_httpStatus - The response's http status code.

Response Lenses