libZSservicesZSamazonka-sdbZSamazonka-sdb
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.SDB.PutAttributes

Description

The PutAttributes operation creates or replaces attributes in an item. The client may specify new attributes using a combination of the Attribute.X.Name and Attribute.X.Value parameters. The client specifies the first attribute by the parameters Attribute.0.Name and Attribute.0.Value, the second attribute by the parameters Attribute.1.Name and Attribute.1.Value, and so on.

Attributes are uniquely identified in an item by their name/value combination. For example, a single item can have the attributes { "first_name", "first_value" } and { "first_name", second_value" }. However, it cannot have two attribute instances where both the Attribute.X.Name and Attribute.X.Value are the same.

Optionally, the requestor can supply the Replace parameter for each individual attribute. Setting this value to true causes the new attribute value to replace the existing attribute value(s). For example, if an item has the attributes { 'a', '1' }, { 'b', '2'} and { 'b', '3' } and the requestor calls PutAttributes using the attributes { 'b', '4' } with the Replace parameter set to true, the final attributes of the item are changed to { 'a', '1' } and { 'b', '4' }, which replaces the previous values of the 'b' attribute with the new value.

You cannot specify an empty string as an attribute name.

Because Amazon SimpleDB makes multiple copies of client data and uses an eventual consistency update model, an immediate GetAttributes or Select operation (read) immediately after a PutAttributes or DeleteAttributes operation (write) might not return the updated data.

The following limitations are enforced for this operation:

  • 256 total attribute name-value pairs per item
  • One billion attributes per domain
  • 10 GB of total user data storage per domain
Synopsis

Creating a Request

data PutAttributes Source #

See: newPutAttributes smart constructor.

Constructors

PutAttributes' 

Fields

  • expected :: Maybe UpdateCondition

    The update condition which, if specified, determines whether the specified attributes will be updated or not. The update condition must be satisfied in order for this request to be processed and the attributes to be updated.

  • domainName :: Text

    The name of the domain in which to perform the operation.

  • itemName :: Text

    The name of the item.

  • attributes :: [ReplaceableAttribute]

    The list of attributes.

Instances

Instances details
Eq PutAttributes Source # 
Instance details

Defined in Amazonka.SDB.PutAttributes

Read PutAttributes Source # 
Instance details

Defined in Amazonka.SDB.PutAttributes

Show PutAttributes Source # 
Instance details

Defined in Amazonka.SDB.PutAttributes

Generic PutAttributes Source # 
Instance details

Defined in Amazonka.SDB.PutAttributes

Associated Types

type Rep PutAttributes :: Type -> Type #

NFData PutAttributes Source # 
Instance details

Defined in Amazonka.SDB.PutAttributes

Methods

rnf :: PutAttributes -> () #

Hashable PutAttributes Source # 
Instance details

Defined in Amazonka.SDB.PutAttributes

AWSRequest PutAttributes Source # 
Instance details

Defined in Amazonka.SDB.PutAttributes

Associated Types

type AWSResponse PutAttributes #

ToHeaders PutAttributes Source # 
Instance details

Defined in Amazonka.SDB.PutAttributes

ToPath PutAttributes Source # 
Instance details

Defined in Amazonka.SDB.PutAttributes

ToQuery PutAttributes Source # 
Instance details

Defined in Amazonka.SDB.PutAttributes

type Rep PutAttributes Source # 
Instance details

Defined in Amazonka.SDB.PutAttributes

type Rep PutAttributes = D1 ('MetaData "PutAttributes" "Amazonka.SDB.PutAttributes" "libZSservicesZSamazonka-sdbZSamazonka-sdb" 'False) (C1 ('MetaCons "PutAttributes'" 'PrefixI 'True) ((S1 ('MetaSel ('Just "expected") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe UpdateCondition)) :*: S1 ('MetaSel ('Just "domainName") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 Text)) :*: (S1 ('MetaSel ('Just "itemName") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 Text) :*: S1 ('MetaSel ('Just "attributes") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 [ReplaceableAttribute]))))
type AWSResponse PutAttributes Source # 
Instance details

Defined in Amazonka.SDB.PutAttributes

newPutAttributes Source #

Create a value of PutAttributes 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:expected:PutAttributes', putAttributes_expected - The update condition which, if specified, determines whether the specified attributes will be updated or not. The update condition must be satisfied in order for this request to be processed and the attributes to be updated.

$sel:domainName:PutAttributes', putAttributes_domainName - The name of the domain in which to perform the operation.

$sel:itemName:PutAttributes', putAttributes_itemName - The name of the item.

$sel:attributes:PutAttributes', putAttributes_attributes - The list of attributes.

Request Lenses

putAttributes_expected :: Lens' PutAttributes (Maybe UpdateCondition) Source #

The update condition which, if specified, determines whether the specified attributes will be updated or not. The update condition must be satisfied in order for this request to be processed and the attributes to be updated.

putAttributes_domainName :: Lens' PutAttributes Text Source #

The name of the domain in which to perform the operation.

Destructuring the Response

data PutAttributesResponse Source #

See: newPutAttributesResponse smart constructor.

Instances

Instances details
Eq PutAttributesResponse Source # 
Instance details

Defined in Amazonka.SDB.PutAttributes

Read PutAttributesResponse Source # 
Instance details

Defined in Amazonka.SDB.PutAttributes

Show PutAttributesResponse Source # 
Instance details

Defined in Amazonka.SDB.PutAttributes

Generic PutAttributesResponse Source # 
Instance details

Defined in Amazonka.SDB.PutAttributes

Associated Types

type Rep PutAttributesResponse :: Type -> Type #

NFData PutAttributesResponse Source # 
Instance details

Defined in Amazonka.SDB.PutAttributes

Methods

rnf :: PutAttributesResponse -> () #

type Rep PutAttributesResponse Source # 
Instance details

Defined in Amazonka.SDB.PutAttributes

type Rep PutAttributesResponse = D1 ('MetaData "PutAttributesResponse" "Amazonka.SDB.PutAttributes" "libZSservicesZSamazonka-sdbZSamazonka-sdb" 'False) (C1 ('MetaCons "PutAttributesResponse'" 'PrefixI 'False) (U1 :: Type -> Type))

newPutAttributesResponse :: PutAttributesResponse Source #

Create a value of PutAttributesResponse with all optional fields omitted.

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