PNG  IHDR;IDATxܻn0K )(pA 7LeG{ §㻢|ذaÆ 6lذaÆ 6lذaÆ 6lom$^yذag5bÆ 6lذaÆ 6lذa{ 6lذaÆ `}HFkm,mӪôô! x|'ܢ˟;E:9&ᶒ}{v]n&6 h_tڠ͵-ҫZ;Z$.Pkž)!o>}leQfJTu іچ\X=8Rن4`Vwl>nG^is"ms$ui?wbs[m6K4O.4%/bC%t Mז -lG6mrz2s%9s@-k9=)kB5\+͂Zsٲ Rn~GRC wIcIn7jJhۛNCS|j08yiHKֶۛkɈ+;SzL/F*\Ԕ#"5m2[S=gnaPeғL lذaÆ 6l^ḵaÆ 6lذaÆ 6lذa; _ذaÆ 6lذaÆ 6lذaÆ RIENDB` # Generated by default/object.tt package Paws::IoT::DynamoDBAction; use Moose; has HashKeyField => (is => 'ro', isa => 'Str', request_name => 'hashKeyField', traits => ['NameInRequest'], required => 1); has HashKeyType => (is => 'ro', isa => 'Str', request_name => 'hashKeyType', traits => ['NameInRequest']); has HashKeyValue => (is => 'ro', isa => 'Str', request_name => 'hashKeyValue', traits => ['NameInRequest'], required => 1); has Operation => (is => 'ro', isa => 'Str', request_name => 'operation', traits => ['NameInRequest']); has PayloadField => (is => 'ro', isa => 'Str', request_name => 'payloadField', traits => ['NameInRequest']); has RangeKeyField => (is => 'ro', isa => 'Str', request_name => 'rangeKeyField', traits => ['NameInRequest']); has RangeKeyType => (is => 'ro', isa => 'Str', request_name => 'rangeKeyType', traits => ['NameInRequest']); has RangeKeyValue => (is => 'ro', isa => 'Str', request_name => 'rangeKeyValue', traits => ['NameInRequest']); has RoleArn => (is => 'ro', isa => 'Str', request_name => 'roleArn', traits => ['NameInRequest'], required => 1); has TableName => (is => 'ro', isa => 'Str', request_name => 'tableName', traits => ['NameInRequest'], required => 1); 1; ### main pod documentation begin ### =head1 NAME Paws::IoT::DynamoDBAction =head1 USAGE This class represents one of two things: =head3 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::IoT::DynamoDBAction object: $service_obj->Method(Att1 => { HashKeyField => $value, ..., TableName => $value }); =head3 Results returned from an API call Use accessors for each attribute. If Att1 is expected to be an Paws::IoT::DynamoDBAction object: $result = $service_obj->Method(...); $result->Att1->HashKeyField =head1 DESCRIPTION Describes an action to write to a DynamoDB table. The C, C, and C values must match the values used when you created the table. The C and C fields use a substitution template syntax. These templates provide data at runtime. The syntax is as follows: ${I}. You can specify any valid expression in a WHERE or SELECT clause, including JSON properties, comparisons, calculations, and functions. For example, the following field uses the third level of the topic: C<"hashKeyValue": "${topic(3)}"> The following field uses the timestamp: C<"rangeKeyValue": "${timestamp()}"> =head1 ATTRIBUTES =head2 B HashKeyField => Str The hash key name. =head2 HashKeyType => Str The hash key type. Valid values are "STRING" or "NUMBER" =head2 B HashKeyValue => Str The hash key value. =head2 Operation => Str The type of operation to be performed. This follows the substitution template, so it can be C<${operation}>, but the substitution must result in one of the following: C, C, or C. =head2 PayloadField => Str The action payload. This name can be customized. =head2 RangeKeyField => Str The range key name. =head2 RangeKeyType => Str The range key type. Valid values are "STRING" or "NUMBER" =head2 RangeKeyValue => Str The range key value. =head2 B RoleArn => Str The ARN of the IAM role that grants access to the DynamoDB table. =head2 B TableName => Str The name of the DynamoDB table. =head1 SEE ALSO This class forms part of L, describing an object used in L =head1 BUGS and CONTRIBUTIONS The source code is located here: L Please report bugs to: L =cut