@Stability(value=Stable)
public static interface CfnAlarmModel.DynamoDBProperty
extends software.amazon.jsii.JsiiSerializable
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 hashKeyType parameter can be 'STRING' .
hashKeyField parameter can be $input.GreenhouseInput.name .${} , 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 hashKeyValue parameter uses a substitution template.
'${$input.GreenhouseInput.temperature * 6 / 5 + 32} in Fahrenheit'
+ . A string concatenation can also contain a combination of literals, operators, functions, references, and substitution templates.
In the following example, the value for the tableName parameter 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, 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 .
Example:
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import software.amazon.awscdk.services.iotevents.*;
DynamoDBProperty dynamoDBProperty = DynamoDBProperty.builder()
.hashKeyField("hashKeyField")
.hashKeyValue("hashKeyValue")
.tableName("tableName")
// the properties below are optional
.hashKeyType("hashKeyType")
.operation("operation")
.payload(PayloadProperty.builder()
.contentExpression("contentExpression")
.type("type")
.build())
.payloadField("payloadField")
.rangeKeyField("rangeKeyField")
.rangeKeyType("rangeKeyType")
.rangeKeyValue("rangeKeyValue")
.build();
| Modifier and Type | Interface and Description |
|---|---|
static class |
CfnAlarmModel.DynamoDBProperty.Builder
A builder for
CfnAlarmModel.DynamoDBProperty |
static class |
CfnAlarmModel.DynamoDBProperty.Jsii$Proxy
An implementation for
CfnAlarmModel.DynamoDBProperty |
| Modifier and Type | Method and Description |
|---|---|
static CfnAlarmModel.DynamoDBProperty.Builder |
builder() |
String |
getHashKeyField()
The name of the hash key (also called the partition key).
|
default String |
getHashKeyType()
The data type for the hash key (also called the partition key).
|
String |
getHashKeyValue()
The value of the hash key (also called the partition key).
|
default String |
getOperation()
The type of operation to perform.
|
default Object |
getPayload()
Information needed to configure the payload.
|
default String |
getPayloadField()
The name of the DynamoDB column that receives the action payload.
|
default String |
getRangeKeyField()
The name of the range key (also called the sort key).
|
default String |
getRangeKeyType()
The data type for the range key (also called the sort key), You can specify the following values:.
|
default String |
getRangeKeyValue()
The value of the range key (also called the sort key).
|
String |
getTableName()
The name of the DynamoDB table.
|
@Stability(value=Stable) @NotNull String getHashKeyField()
The hashKeyField value must match the partition key of the target DynamoDB table.
@Stability(value=Stable) @NotNull String getHashKeyValue()
@Stability(value=Stable) @NotNull String getTableName()
The tableName value must match the table name of the target DynamoDB table.
@Stability(value=Stable) @Nullable default String getHashKeyType()
'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' .
@Stability(value=Stable) @Nullable default String getOperation()
'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.
@Stability(value=Stable) @Nullable default Object getPayload()
By default, AWS IoT Events generates a standard payload in JSON for any action. This action payload contains all attribute-value pairs that have the information about the detector model instance and the event triggered the action. To configure the action payload, you can use contentExpression .
@Stability(value=Stable) @Nullable default String getPayloadField()
If you don't specify this parameter, the name of the DynamoDB column is payload .
@Stability(value=Stable) @Nullable default String getRangeKeyField()
The rangeKeyField value must match the sort key of the target DynamoDB table.
@Stability(value=Stable) @Nullable default String getRangeKeyType()
'STRING' - The range key is a string.'NUMBER' - The range key is number.
If you don't specify rangeKeyField , the default value is 'STRING' .
@Stability(value=Stable) @Nullable default String getRangeKeyValue()
@Stability(value=Stable) static CfnAlarmModel.DynamoDBProperty.Builder builder()
Copyright © 2022. All rights reserved.