amazonka-sdb-1.6.1: Amazon SimpleDB SDK.

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

Network.AWS.SDB.BatchDeleteAttributes

Contents

Description

Performs multiple DeleteAttributes operations in a single call, which reduces round trips and latencies. This enables Amazon SimpleDB to optimize requests, which generally yields better throughput.

The following limitations are enforced for this operation: * 1 MB request size * 25 item limit per BatchDeleteAttributes operation

Synopsis

Creating a Request

batchDeleteAttributes Source #

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

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

  • bdaDomainName - The name of the domain in which the attributes are being deleted.
  • bdaItems - A list of items on which to perform the operation.

data BatchDeleteAttributes Source #

See: batchDeleteAttributes smart constructor.

Instances
Eq BatchDeleteAttributes Source # 
Instance details

Defined in Network.AWS.SDB.BatchDeleteAttributes

Data BatchDeleteAttributes Source # 
Instance details

Defined in Network.AWS.SDB.BatchDeleteAttributes

Methods

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

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

toConstr :: BatchDeleteAttributes -> Constr #

dataTypeOf :: BatchDeleteAttributes -> DataType #

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

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

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

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

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

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

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

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

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

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

Read BatchDeleteAttributes Source # 
Instance details

Defined in Network.AWS.SDB.BatchDeleteAttributes

Show BatchDeleteAttributes Source # 
Instance details

Defined in Network.AWS.SDB.BatchDeleteAttributes

Generic BatchDeleteAttributes Source # 
Instance details

Defined in Network.AWS.SDB.BatchDeleteAttributes

Associated Types

type Rep BatchDeleteAttributes :: Type -> Type #

Hashable BatchDeleteAttributes Source # 
Instance details

Defined in Network.AWS.SDB.BatchDeleteAttributes

AWSRequest BatchDeleteAttributes Source # 
Instance details

Defined in Network.AWS.SDB.BatchDeleteAttributes

Associated Types

type Rs BatchDeleteAttributes :: Type #

ToHeaders BatchDeleteAttributes Source # 
Instance details

Defined in Network.AWS.SDB.BatchDeleteAttributes

ToPath BatchDeleteAttributes Source # 
Instance details

Defined in Network.AWS.SDB.BatchDeleteAttributes

ToQuery BatchDeleteAttributes Source # 
Instance details

Defined in Network.AWS.SDB.BatchDeleteAttributes

NFData BatchDeleteAttributes Source # 
Instance details

Defined in Network.AWS.SDB.BatchDeleteAttributes

Methods

rnf :: BatchDeleteAttributes -> () #

type Rep BatchDeleteAttributes Source # 
Instance details

Defined in Network.AWS.SDB.BatchDeleteAttributes

type Rep BatchDeleteAttributes = D1 (MetaData "BatchDeleteAttributes" "Network.AWS.SDB.BatchDeleteAttributes" "amazonka-sdb-1.6.1-DqICC6HvLZkBMo1L4m3WLm" False) (C1 (MetaCons "BatchDeleteAttributes'" PrefixI True) (S1 (MetaSel (Just "_bdaDomainName") NoSourceUnpackedness SourceStrict DecidedStrict) (Rec0 Text) :*: S1 (MetaSel (Just "_bdaItems") NoSourceUnpackedness SourceStrict DecidedStrict) (Rec0 [DeletableItem])))
type Rs BatchDeleteAttributes Source # 
Instance details

Defined in Network.AWS.SDB.BatchDeleteAttributes

Request Lenses

bdaDomainName :: Lens' BatchDeleteAttributes Text Source #

The name of the domain in which the attributes are being deleted.

bdaItems :: Lens' BatchDeleteAttributes [DeletableItem] Source #

A list of items on which to perform the operation.

Destructuring the Response

batchDeleteAttributesResponse :: BatchDeleteAttributesResponse Source #

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

data BatchDeleteAttributesResponse Source #

See: batchDeleteAttributesResponse smart constructor.

Instances
Eq BatchDeleteAttributesResponse Source # 
Instance details

Defined in Network.AWS.SDB.BatchDeleteAttributes

Data BatchDeleteAttributesResponse Source # 
Instance details

Defined in Network.AWS.SDB.BatchDeleteAttributes

Methods

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

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

toConstr :: BatchDeleteAttributesResponse -> Constr #

dataTypeOf :: BatchDeleteAttributesResponse -> DataType #

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

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

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

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

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

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

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

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

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

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

Read BatchDeleteAttributesResponse Source # 
Instance details

Defined in Network.AWS.SDB.BatchDeleteAttributes

Show BatchDeleteAttributesResponse Source # 
Instance details

Defined in Network.AWS.SDB.BatchDeleteAttributes

Generic BatchDeleteAttributesResponse Source # 
Instance details

Defined in Network.AWS.SDB.BatchDeleteAttributes

Associated Types

type Rep BatchDeleteAttributesResponse :: Type -> Type #

NFData BatchDeleteAttributesResponse Source # 
Instance details

Defined in Network.AWS.SDB.BatchDeleteAttributes

type Rep BatchDeleteAttributesResponse Source # 
Instance details

Defined in Network.AWS.SDB.BatchDeleteAttributes

type Rep BatchDeleteAttributesResponse = D1 (MetaData "BatchDeleteAttributesResponse" "Network.AWS.SDB.BatchDeleteAttributes" "amazonka-sdb-1.6.1-DqICC6HvLZkBMo1L4m3WLm" False) (C1 (MetaCons "BatchDeleteAttributesResponse'" PrefixI False) (U1 :: Type -> Type))