stratosphere-0.1.6: EDSL for AWS CloudFormation

Safe HaskellNone
LanguageHaskell2010

Stratosphere.Resources.DBParameterGroup

Description

Creates a custom parameter group for an RDS database family. For more information about RDS parameter groups, see Working with DB Parameter Groups in the Amazon Relational Database Service User Guide. This type can be declared in a template and referenced in the DBParameterGroupName parameter of AWS::RDS::DBInstance.

Synopsis

Documentation

data DBParameterGroup Source #

Full data type definition for DBParameterGroup. See dbParameterGroup for a more convenient constructor.

Instances

Show DBParameterGroup Source # 
Generic DBParameterGroup Source # 
FromJSON DBParameterGroup Source # 
ToJSON DBParameterGroup Source # 
type Rep DBParameterGroup Source # 
type Rep DBParameterGroup = D1 (MetaData "DBParameterGroup" "Stratosphere.Resources.DBParameterGroup" "stratosphere-0.1.6-LbRvRulwTkCDVIpKnpH4uK" False) (C1 (MetaCons "DBParameterGroup" PrefixI True) ((:*:) ((:*:) (S1 (MetaSel (Just Symbol "_dBParameterGroupDescription") NoSourceUnpackedness NoSourceStrictness DecidedLazy) (Rec0 (Val Text))) (S1 (MetaSel (Just Symbol "_dBParameterGroupFamily") NoSourceUnpackedness NoSourceStrictness DecidedLazy) (Rec0 (Val Text)))) ((:*:) (S1 (MetaSel (Just Symbol "_dBParameterGroupParameters") NoSourceUnpackedness NoSourceStrictness DecidedLazy) (Rec0 (Maybe Value))) (S1 (MetaSel (Just Symbol "_dBParameterGroupTags") NoSourceUnpackedness NoSourceStrictness DecidedLazy) (Rec0 (Maybe [ResourceTag]))))))

dbParameterGroup Source #

Constructor for DBParameterGroup containing required fields as arguments.

dbpgDescription :: Lens' DBParameterGroup (Val Text) Source #

A friendly description of the RDS parameter group. For example, "My Parameter Group".

dbpgFamily :: Lens' DBParameterGroup (Val Text) Source #

The database family of this RDS parameter group. For example, "MySQL5.1".

dbpgParameters :: Lens' DBParameterGroup (Maybe Value) Source #

The parameters to set for this RDS parameter group. Changes to dynamic parameters are applied immediately. Changes to static parameters require a reboot without failover to the DB instance that is associated with the parameter group before the change can take effect.

dbpgTags :: Lens' DBParameterGroup (Maybe [ResourceTag]) Source #

The tags that you want to attach to the RDS parameter group.