NAME

Paws::DynamoDB::AttributeValue

USAGE

This class represents one of two things:

Arguments in a call to a service

Use the attributes of this class as arguments to methods. You shouldn't make instances of this class. Each attribute should be used as a named argument in the calls that expect this type of object.

As an example, if Att1 is expected to be a Paws::DynamoDB::AttributeValue object:

$service_obj->Method(Att1 => { B => $value, ..., SS => $value  });

Results returned from an API call

Use accessors for each attribute. If Att1 is expected to be an Paws::DynamoDB::AttributeValue object:

$result = $service_obj->Method(...);
$result->Att1->B

DESCRIPTION

Represents the data for an attribute. You can set one, and only one, of the elements.

Each attribute in an item is a name-value pair. An attribute can be single-valued or multi-valued set. For example, a book item can have title and authors attributes. Each book has one title but can have many authors. The multi-valued attribute is a set; duplicate values are not allowed.

ATTRIBUTES

B => Str

A Binary data type.

BOOL => Bool

A Boolean data type.

BS => ArrayRef[Str]

A Binary Set data type.

L => ArrayRef[Paws::DynamoDB::AttributeValue]

A List of attribute values.

M => Paws::DynamoDB::MapAttributeValue

A Map of attribute values.

N => Str

A Number data type.

NS => ArrayRef[Str]

A Number Set data type.

NULL => Bool

A Null data type.

S => Str

A String data type.

SS => ArrayRef[Str]

A String Set data type.

SEE ALSO

This class forms part of Paws, describing an object used in Paws::DynamoDB

BUGS and CONTRIBUTIONS

The source code is located here: https://github.com/pplu/aws-sdk-perl

Please report bugs to: https://github.com/pplu/aws-sdk-perl/issues