Class DynamoDBAction
- java.lang.Object
-
- software.amazon.awssdk.services.iotevents.model.DynamoDBAction
-
- All Implemented Interfaces:
Serializable,SdkPojo,ToCopyableBuilder<DynamoDBAction.Builder,DynamoDBAction>
@Generated("software.amazon.awssdk:codegen") public final class DynamoDBAction extends Object implements SdkPojo, Serializable, ToCopyableBuilder<DynamoDBAction.Builder,DynamoDBAction>
Defines 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. 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 literal values, the expressions must contain single quotes. For example, the value for the
hashKeyTypeparameter can be'STRING'. -
For references, you must specify either variables or input values. For example, the value for the
hashKeyFieldparameter can be$input.GreenhouseInput.name. -
For a substitution template, you must use
${}, and the template must be in single quotes. A substitution template can also contain a combination of literals, operators, functions, references, and substitution templates.In the following example, the value for the
hashKeyValueparameter uses a substitution template.'${$input.GreenhouseInput.temperature * 6 / 5 + 32} in Fahrenheit' -
For a string concatenation, you must use
+. A string concatenation can also contain a combination of literals, operators, functions, references, and substitution templates.In the following example, the value for the
tableNameparameter uses a string concatenation.'GreenhouseTemperatureTable ' + $input.GreenhouseInput.date
For more information, see Expressions in the AWS IoT Events Developer Guide.
If the defined payload type is a string,
DynamoDBActionwrites non-JSON data to the DynamoDB table as binary data. The DynamoDB console displays the data as Base64-encoded text. The value for thepayloadFieldparameter is<payload-field>_raw.- See Also:
- Serialized Form
-
-
Nested Class Summary
Nested Classes Modifier and Type Class Description static interfaceDynamoDBAction.Builder
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static DynamoDBAction.Builderbuilder()booleanequals(Object obj)booleanequalsBySdkFields(Object obj)<T> Optional<T>getValueForField(String fieldName, Class<T> clazz)inthashCode()StringhashKeyField()The name of the hash key (also called the partition key).StringhashKeyType()The data type for the hash key (also called the partition key).StringhashKeyValue()The value of the hash key (also called the partition key).Stringoperation()The type of operation to perform.Payloadpayload()Returns the value of the Payload property for this object.StringpayloadField()The name of the DynamoDB column that receives the action payload.StringrangeKeyField()The name of the range key (also called the sort key).StringrangeKeyType()The data type for the range key (also called the sort key), You can specify the following values:StringrangeKeyValue()The value of the range key (also called the sort key).List<SdkField<?>>sdkFields()static Class<? extends DynamoDBAction.Builder>serializableBuilderClass()StringtableName()The name of the DynamoDB table.DynamoDBAction.BuildertoBuilder()StringtoString()Returns a string representation of this object.-
Methods inherited from class java.lang.Object
clone, finalize, getClass, notify, notifyAll, wait, wait, wait
-
Methods inherited from interface software.amazon.awssdk.utils.builder.ToCopyableBuilder
copy
-
-
-
-
Method Detail
-
hashKeyType
public final String hashKeyType()
The data type for the hash key (also called the partition key). You can specify the following values:
-
'STRING'- The hash key is a string. -
'NUMBER'- The hash key is a number.
If you don't specify
hashKeyType, the default value is'STRING'.- Returns:
- The data type for the hash key (also called the partition key). You can specify the following values:
-
'STRING'- The hash key is a string. -
'NUMBER'- The hash key is a number.
If you don't specify
hashKeyType, the default value is'STRING'. -
-
-
hashKeyField
public final String hashKeyField()
The name of the hash key (also called the partition key). The
hashKeyFieldvalue must match the partition key of the target DynamoDB table.- Returns:
- The name of the hash key (also called the partition key). The
hashKeyFieldvalue must match the partition key of the target DynamoDB table.
-
hashKeyValue
public final String hashKeyValue()
The value of the hash key (also called the partition key).
- Returns:
- The value of the hash key (also called the partition key).
-
rangeKeyType
public final String rangeKeyType()
The data type for the range key (also called the sort key), You can specify the following values:
-
'STRING'- The range key is a string. -
'NUMBER'- The range key is number.
If you don't specify
rangeKeyField, the default value is'STRING'.- Returns:
- The data type for the range key (also called the sort key), You can specify the following values:
-
'STRING'- The range key is a string. -
'NUMBER'- The range key is number.
If you don't specify
rangeKeyField, the default value is'STRING'. -
-
-
rangeKeyField
public final String rangeKeyField()
The name of the range key (also called the sort key). The
rangeKeyFieldvalue must match the sort key of the target DynamoDB table.- Returns:
- The name of the range key (also called the sort key). The
rangeKeyFieldvalue must match the sort key of the target DynamoDB table.
-
rangeKeyValue
public final String rangeKeyValue()
The value of the range key (also called the sort key).
- Returns:
- The value of the range key (also called the sort key).
-
operation
public final String operation()
The type of operation to perform. You can specify the following values:
-
'INSERT'- Insert data as a new item into the DynamoDB table. This item uses the specified hash key as a partition key. If you specified a range key, the item uses the range key as a sort key. -
'UPDATE'- Update an existing item of the DynamoDB table with new data. This item's partition key must match the specified hash key. If you specified a range key, the range key must match the item's sort key. -
'DELETE'- Delete an existing item of the DynamoDB table. This item's partition key must match the specified hash key. If you specified a range key, the range key must match the item's sort key.
If you don't specify this parameter, AWS IoT Events triggers the
'INSERT'operation.- Returns:
- The type of operation to perform. You can specify the following values:
-
'INSERT'- Insert data as a new item into the DynamoDB table. This item uses the specified hash key as a partition key. If you specified a range key, the item uses the range key as a sort key. -
'UPDATE'- Update an existing item of the DynamoDB table with new data. This item's partition key must match the specified hash key. If you specified a range key, the range key must match the item's sort key. -
'DELETE'- Delete an existing item of the DynamoDB table. This item's partition key must match the specified hash key. If you specified a range key, the range key must match the item's sort key.
If you don't specify this parameter, AWS IoT Events triggers the
'INSERT'operation. -
-
-
payloadField
public final String payloadField()
The 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.- Returns:
- The 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.
-
tableName
public final String tableName()
The name of the DynamoDB table. The
tableNamevalue must match the table name of the target DynamoDB table.- Returns:
- The name of the DynamoDB table. The
tableNamevalue must match the table name of the target DynamoDB table.
-
payload
public final Payload payload()
Returns the value of the Payload property for this object.- Returns:
- The value of the Payload property for this object.
-
toBuilder
public DynamoDBAction.Builder toBuilder()
- Specified by:
toBuilderin interfaceToCopyableBuilder<DynamoDBAction.Builder,DynamoDBAction>
-
builder
public static DynamoDBAction.Builder builder()
-
serializableBuilderClass
public static Class<? extends DynamoDBAction.Builder> serializableBuilderClass()
-
equalsBySdkFields
public final boolean equalsBySdkFields(Object obj)
- Specified by:
equalsBySdkFieldsin interfaceSdkPojo
-
toString
public final String toString()
Returns a string representation of this object. This is useful for testing and debugging. Sensitive data will be redacted from this string using a placeholder value.
-
-