![]() |
![]()
| ![]() |
![]()
NAMEPaws::IoTEvents::DynamoDBAction USAGEThis 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::IoTEvents::DynamoDBAction object: $service_obj->Method(Att1 => { HashKeyField => $value, ..., TableName => $value }); Results returned from an API call Use accessors for each attribute. If Att1 is expected to be an Paws::IoTEvents::DynamoDBAction object: $result = $service_obj->Method(...); $result->Att1->HashKeyField DESCRIPTIONDefines an action to write to the Amazon DynamoDB table that you created. The standard action payload contains all the information about the detector model instance and the event that triggered the action. You can customize the payload (https://docs.aws.amazon.com/iotevents/latest/apireference/API_Payload.html). One column of the DynamoDB table receives all attribute-value pairs in the payload that you specify. You must use expressions for all parameters in "DynamoDBAction". The expressions accept literals, operators, functions, references, and substitution templates. Examples
For more information, see Expressions (https://docs.aws.amazon.com/iotevents/latest/developerguide/iotevents-expressions.html) in the AWS IoT Events Developer Guide. If the defined payload type is a string, "DynamoDBAction" writes non-JSON data to the DynamoDB table as binary data. The DynamoDB console displays the data as Base64-encoded text. The value for the "payloadField" parameter is "<payload-field>_raw". ATTRIBUTESREQUIRED HashKeyField => StrThe name of the hash key (also called the partition key). The "hashKeyField" value must match the partition key of the target DynamoDB table. HashKeyType => StrThe data type for the hash key (also called the partition key). You can specify the following values:
If you don't specify "hashKeyType", the default value is 'STRING'. REQUIRED HashKeyValue => StrThe value of the hash key (also called the partition key). Operation => StrThe type of operation to perform. You can specify the following values:
If you don't specify this parameter, AWS IoT Events triggers the 'INSERT' operation. Payload => Paws::IoTEvents::PayloadPayloadField => StrThe name of the DynamoDB column that receives the action payload. If you don't specify this parameter, the name of the DynamoDB column is "payload". RangeKeyField => StrThe name of the range key (also called the sort key). The "rangeKeyField" value must match the sort key of the target DynamoDB table. RangeKeyType => StrThe data type for the range key (also called the sort key), You can specify the following values:
If you don't specify "rangeKeyField", the default value is 'STRING'. RangeKeyValue => StrThe value of the range key (also called the sort key). REQUIRED TableName => StrThe name of the DynamoDB table. The "tableName" value must match the table name of the target DynamoDB table. SEE ALSOThis class forms part of Paws, describing an object used in Paws::IoTEvents BUGS and CONTRIBUTIONSThe source code is located here: <https://github.com/pplu/aws-sdk-perl> Please report bugs to: <https://github.com/pplu/aws-sdk-perl/issues>
|