You are viewing documentation for version 2 of the AWS SDK for Ruby. Version 3 documentation can be found here.
Class: Aws::SimpleDB::Types::PutAttributesRequest
- Inherits:
-
Struct
- Object
- Struct
- Aws::SimpleDB::Types::PutAttributesRequest
- Defined in:
- (unknown)
Overview
Note:
When passing PutAttributesRequest as input to an Aws::Client method, you can use a vanilla Hash:
{
domain_name: "String", # required
item_name: "String", # required
attributes: [ # required
{
name: "String", # required
value: "String", # required
replace: false,
},
],
expected: {
name: "String",
value: "String",
exists: false,
},
}
Instance Attribute Summary collapse
-
#attributes ⇒ Array<Types::ReplaceableAttribute>
The list of attributes.
-
#domain_name ⇒ String
The name of the domain in which to perform the operation.
-
#expected ⇒ Types::UpdateCondition
The update condition which, if specified, determines whether the specified attributes will be updated or not.
-
#item_name ⇒ String
The name of the item.
Instance Attribute Details
#attributes ⇒ Array<Types::ReplaceableAttribute>
The list of attributes.
#domain_name ⇒ String
The name of the domain in which to perform the operation.
#expected ⇒ Types::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.
#item_name ⇒ String
The name of the item.