amazonka-rds-1.4.5: Amazon Relational Database Service SDK.

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

Network.AWS.RDS.ModifyDBSnapshotAttribute

Contents

Description

Adds an attribute and values to, or removes an attribute and values from, a manual DB snapshot.

To share a manual DB snapshot with other AWS accounts, specify restore as the AttributeName and use the ValuesToAdd parameter to add a list of IDs of the AWS accounts that are authorized to restore the manual DB snapshot. Uses the value all to make the manual DB snapshot public, which means it can be copied or restored by all AWS accounts. Do not add the all value for any manual DB snapshots that contain private information that you don't want available to all AWS accounts.

To view which AWS accounts have access to copy or restore a manual DB snapshot, or whether a manual DB snapshot public or private, use the DescribeDBSnapshotAttributes API action.

If the manual DB snapshot is encrypted, it cannot be shared.

Synopsis

Creating a Request

modifyDBSnapshotAttribute #

Creates a value of ModifyDBSnapshotAttribute with the minimum fields required to make a request.

Use one of the following lenses to modify other fields as desired:

  • mdsaValuesToAdd - A list of DB snapshot attributes to add to the attribute specified by AttributeName . To authorize other AWS accounts to copy or restore a manual snapshot, set this list to include one or more AWS account IDs, or all to make the manual DB snapshot restorable by any AWS account. Do not add the all value for any manual DB snapshots that contain private information that you don't want available to all AWS accounts.
  • mdsaValuesToRemove - A list of DB snapshot attributes to remove from the attribute specified by AttributeName . To remove authorization for other AWS accounts to copy or restore a manual snapshot, set this list to include one or more AWS account identifiers, or all to remove authorization for any AWS account to copy or restore the DB snapshot. If you specify all , an AWS account whose account ID is explicitly added to the restore attribute can still copy or restore the manual DB snapshot.
  • mdsaDBSnapshotIdentifier - The identifier for the DB snapshot to modify the attributes for.
  • mdsaAttributeName - The name of the DB snapshot attribute to modify. To manage authorization for other AWS accounts to copy or restore a manual DB snapshot, set this value to restore .

data ModifyDBSnapshotAttribute #

See: modifyDBSnapshotAttribute smart constructor.

Instances

Eq ModifyDBSnapshotAttribute # 
Data ModifyDBSnapshotAttribute # 

Methods

gfoldl :: (forall d b. Data d => c (d -> b) -> d -> c b) -> (forall g. g -> c g) -> ModifyDBSnapshotAttribute -> c ModifyDBSnapshotAttribute #

gunfold :: (forall b r. Data b => c (b -> r) -> c r) -> (forall r. r -> c r) -> Constr -> c ModifyDBSnapshotAttribute #

toConstr :: ModifyDBSnapshotAttribute -> Constr #

dataTypeOf :: ModifyDBSnapshotAttribute -> DataType #

dataCast1 :: Typeable (* -> *) t => (forall d. Data d => c (t d)) -> Maybe (c ModifyDBSnapshotAttribute) #

dataCast2 :: Typeable (* -> * -> *) t => (forall d e. (Data d, Data e) => c (t d e)) -> Maybe (c ModifyDBSnapshotAttribute) #

gmapT :: (forall b. Data b => b -> b) -> ModifyDBSnapshotAttribute -> ModifyDBSnapshotAttribute #

gmapQl :: (r -> r' -> r) -> r -> (forall d. Data d => d -> r') -> ModifyDBSnapshotAttribute -> r #

gmapQr :: (r' -> r -> r) -> r -> (forall d. Data d => d -> r') -> ModifyDBSnapshotAttribute -> r #

gmapQ :: (forall d. Data d => d -> u) -> ModifyDBSnapshotAttribute -> [u] #

gmapQi :: Int -> (forall d. Data d => d -> u) -> ModifyDBSnapshotAttribute -> u #

gmapM :: Monad m => (forall d. Data d => d -> m d) -> ModifyDBSnapshotAttribute -> m ModifyDBSnapshotAttribute #

gmapMp :: MonadPlus m => (forall d. Data d => d -> m d) -> ModifyDBSnapshotAttribute -> m ModifyDBSnapshotAttribute #

gmapMo :: MonadPlus m => (forall d. Data d => d -> m d) -> ModifyDBSnapshotAttribute -> m ModifyDBSnapshotAttribute #

Read ModifyDBSnapshotAttribute # 
Show ModifyDBSnapshotAttribute # 
Generic ModifyDBSnapshotAttribute # 
Hashable ModifyDBSnapshotAttribute # 
NFData ModifyDBSnapshotAttribute # 
AWSRequest ModifyDBSnapshotAttribute # 
ToQuery ModifyDBSnapshotAttribute # 
ToPath ModifyDBSnapshotAttribute # 
ToHeaders ModifyDBSnapshotAttribute # 
type Rep ModifyDBSnapshotAttribute # 
type Rep ModifyDBSnapshotAttribute = D1 (MetaData "ModifyDBSnapshotAttribute" "Network.AWS.RDS.ModifyDBSnapshotAttribute" "amazonka-rds-1.4.5-I79yxZdjKNFFGn6ti49zKn" False) (C1 (MetaCons "ModifyDBSnapshotAttribute'" PrefixI True) ((:*:) ((:*:) (S1 (MetaSel (Just Symbol "_mdsaValuesToAdd") NoSourceUnpackedness SourceStrict DecidedStrict) (Rec0 (Maybe [Text]))) (S1 (MetaSel (Just Symbol "_mdsaValuesToRemove") NoSourceUnpackedness SourceStrict DecidedStrict) (Rec0 (Maybe [Text])))) ((:*:) (S1 (MetaSel (Just Symbol "_mdsaDBSnapshotIdentifier") NoSourceUnpackedness SourceStrict DecidedStrict) (Rec0 Text)) (S1 (MetaSel (Just Symbol "_mdsaAttributeName") NoSourceUnpackedness SourceStrict DecidedStrict) (Rec0 Text)))))
type Rs ModifyDBSnapshotAttribute # 

Request Lenses

mdsaValuesToAdd :: Lens' ModifyDBSnapshotAttribute [Text] #

A list of DB snapshot attributes to add to the attribute specified by AttributeName . To authorize other AWS accounts to copy or restore a manual snapshot, set this list to include one or more AWS account IDs, or all to make the manual DB snapshot restorable by any AWS account. Do not add the all value for any manual DB snapshots that contain private information that you don't want available to all AWS accounts.

mdsaValuesToRemove :: Lens' ModifyDBSnapshotAttribute [Text] #

A list of DB snapshot attributes to remove from the attribute specified by AttributeName . To remove authorization for other AWS accounts to copy or restore a manual snapshot, set this list to include one or more AWS account identifiers, or all to remove authorization for any AWS account to copy or restore the DB snapshot. If you specify all , an AWS account whose account ID is explicitly added to the restore attribute can still copy or restore the manual DB snapshot.

mdsaDBSnapshotIdentifier :: Lens' ModifyDBSnapshotAttribute Text #

The identifier for the DB snapshot to modify the attributes for.

mdsaAttributeName :: Lens' ModifyDBSnapshotAttribute Text #

The name of the DB snapshot attribute to modify. To manage authorization for other AWS accounts to copy or restore a manual DB snapshot, set this value to restore .

Destructuring the Response

modifyDBSnapshotAttributeResponse #

Creates a value of ModifyDBSnapshotAttributeResponse with the minimum fields required to make a request.

Use one of the following lenses to modify other fields as desired:

data ModifyDBSnapshotAttributeResponse #

See: modifyDBSnapshotAttributeResponse smart constructor.

Instances

Eq ModifyDBSnapshotAttributeResponse # 
Data ModifyDBSnapshotAttributeResponse # 

Methods

gfoldl :: (forall d b. Data d => c (d -> b) -> d -> c b) -> (forall g. g -> c g) -> ModifyDBSnapshotAttributeResponse -> c ModifyDBSnapshotAttributeResponse #

gunfold :: (forall b r. Data b => c (b -> r) -> c r) -> (forall r. r -> c r) -> Constr -> c ModifyDBSnapshotAttributeResponse #

toConstr :: ModifyDBSnapshotAttributeResponse -> Constr #

dataTypeOf :: ModifyDBSnapshotAttributeResponse -> DataType #

dataCast1 :: Typeable (* -> *) t => (forall d. Data d => c (t d)) -> Maybe (c ModifyDBSnapshotAttributeResponse) #

dataCast2 :: Typeable (* -> * -> *) t => (forall d e. (Data d, Data e) => c (t d e)) -> Maybe (c ModifyDBSnapshotAttributeResponse) #

gmapT :: (forall b. Data b => b -> b) -> ModifyDBSnapshotAttributeResponse -> ModifyDBSnapshotAttributeResponse #

gmapQl :: (r -> r' -> r) -> r -> (forall d. Data d => d -> r') -> ModifyDBSnapshotAttributeResponse -> r #

gmapQr :: (r' -> r -> r) -> r -> (forall d. Data d => d -> r') -> ModifyDBSnapshotAttributeResponse -> r #

gmapQ :: (forall d. Data d => d -> u) -> ModifyDBSnapshotAttributeResponse -> [u] #

gmapQi :: Int -> (forall d. Data d => d -> u) -> ModifyDBSnapshotAttributeResponse -> u #

gmapM :: Monad m => (forall d. Data d => d -> m d) -> ModifyDBSnapshotAttributeResponse -> m ModifyDBSnapshotAttributeResponse #

gmapMp :: MonadPlus m => (forall d. Data d => d -> m d) -> ModifyDBSnapshotAttributeResponse -> m ModifyDBSnapshotAttributeResponse #

gmapMo :: MonadPlus m => (forall d. Data d => d -> m d) -> ModifyDBSnapshotAttributeResponse -> m ModifyDBSnapshotAttributeResponse #

Read ModifyDBSnapshotAttributeResponse # 
Show ModifyDBSnapshotAttributeResponse # 
Generic ModifyDBSnapshotAttributeResponse # 
NFData ModifyDBSnapshotAttributeResponse # 
type Rep ModifyDBSnapshotAttributeResponse # 
type Rep ModifyDBSnapshotAttributeResponse = D1 (MetaData "ModifyDBSnapshotAttributeResponse" "Network.AWS.RDS.ModifyDBSnapshotAttribute" "amazonka-rds-1.4.5-I79yxZdjKNFFGn6ti49zKn" False) (C1 (MetaCons "ModifyDBSnapshotAttributeResponse'" PrefixI True) ((:*:) (S1 (MetaSel (Just Symbol "_mdsarsDBSnapshotAttributesResult") NoSourceUnpackedness SourceStrict DecidedStrict) (Rec0 (Maybe DBSnapshotAttributesResult))) (S1 (MetaSel (Just Symbol "_mdsarsResponseStatus") NoSourceUnpackedness SourceStrict DecidedUnpack) (Rec0 Int))))

Response Lenses