@Generated(value="jsii-pacmak/1.78.1 (build 878761e)", date="2023-04-17T22:38:13.258Z") @Stability(value=Experimental) public class DynamoDBv2PutItemAction extends software.amazon.jsii.JsiiObject implements IAction
Example:
import software.amazon.awscdk.services.dynamodb.*;
Table table;
TopicRule topicRule = TopicRule.Builder.create(this, "TopicRule")
.sql(IotSql.fromStringAsVer20160323("SELECT * FROM 'device/+/data'"))
.actions(List.of(
new DynamoDBv2PutItemAction(table)))
.build();
| Modifier and Type | Class and Description |
|---|---|
static class |
DynamoDBv2PutItemAction.Builder
(experimental) A fluent builder for
DynamoDBv2PutItemAction. |
software.amazon.jsii.JsiiObject.InitializationModeIAction.Jsii$Default, IAction.Jsii$Proxy| Modifier | Constructor and Description |
|---|---|
|
DynamoDBv2PutItemAction(ITable table) |
|
DynamoDBv2PutItemAction(ITable table,
DynamoDBv2PutItemActionProps props) |
protected |
DynamoDBv2PutItemAction(software.amazon.jsii.JsiiObject.InitializationMode initializationMode) |
protected |
DynamoDBv2PutItemAction(software.amazon.jsii.JsiiObjectRef objRef) |
jsiiAsyncCall, jsiiAsyncCall, jsiiCall, jsiiCall, jsiiGet, jsiiGet, jsiiSet, jsiiStaticCall, jsiiStaticCall, jsiiStaticGet, jsiiStaticGet, jsiiStaticSet, jsiiStaticSetprotected DynamoDBv2PutItemAction(software.amazon.jsii.JsiiObjectRef objRef)
protected DynamoDBv2PutItemAction(software.amazon.jsii.JsiiObject.InitializationMode initializationMode)
@Stability(value=Experimental)
public DynamoDBv2PutItemAction(@NotNull
ITable table,
@Nullable
DynamoDBv2PutItemActionProps props)
table - the DynamoDB table in which to put the items. This parameter is required.props - Optional properties to not use default.@Stability(value=Experimental)
public DynamoDBv2PutItemAction(@NotNull
ITable table)
table - the DynamoDB table in which to put the items. This parameter is required.Copyright © 2023. All rights reserved.