/** * Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved. * SPDX-License-Identifier: Apache-2.0. */ #pragma once #include #include #include #include namespace Aws { namespace Utils { namespace Json { class JsonValue; class JsonView; } // namespace Json } // namespace Utils namespace IoT { namespace Model { /** *

Describes an action to write to a DynamoDB table.

This DynamoDB action * writes each attribute in the message payload into it's own column in the * DynamoDB table.

See Also:

AWS * API Reference

*/ class DynamoDBv2Action { public: AWS_IOT_API DynamoDBv2Action(); AWS_IOT_API DynamoDBv2Action(Aws::Utils::Json::JsonView jsonValue); AWS_IOT_API DynamoDBv2Action& operator=(Aws::Utils::Json::JsonView jsonValue); AWS_IOT_API Aws::Utils::Json::JsonValue Jsonize() const; /** *

The ARN of the IAM role that grants access to the DynamoDB table.

*/ inline const Aws::String& GetRoleArn() const{ return m_roleArn; } /** *

The ARN of the IAM role that grants access to the DynamoDB table.

*/ inline bool RoleArnHasBeenSet() const { return m_roleArnHasBeenSet; } /** *

The ARN of the IAM role that grants access to the DynamoDB table.

*/ inline void SetRoleArn(const Aws::String& value) { m_roleArnHasBeenSet = true; m_roleArn = value; } /** *

The ARN of the IAM role that grants access to the DynamoDB table.

*/ inline void SetRoleArn(Aws::String&& value) { m_roleArnHasBeenSet = true; m_roleArn = std::move(value); } /** *

The ARN of the IAM role that grants access to the DynamoDB table.

*/ inline void SetRoleArn(const char* value) { m_roleArnHasBeenSet = true; m_roleArn.assign(value); } /** *

The ARN of the IAM role that grants access to the DynamoDB table.

*/ inline DynamoDBv2Action& WithRoleArn(const Aws::String& value) { SetRoleArn(value); return *this;} /** *

The ARN of the IAM role that grants access to the DynamoDB table.

*/ inline DynamoDBv2Action& WithRoleArn(Aws::String&& value) { SetRoleArn(std::move(value)); return *this;} /** *

The ARN of the IAM role that grants access to the DynamoDB table.

*/ inline DynamoDBv2Action& WithRoleArn(const char* value) { SetRoleArn(value); return *this;} /** *

Specifies the DynamoDB table to which the message data will be written. For * example:

{ "dynamoDBv2": { "roleArn": "aws:iam:12341251:my-role" * "putItem": { "tableName": "my-table" } } }

Each attribute in the * message payload will be written to a separate column in the DynamoDB * database.

*/ inline const PutItemInput& GetPutItem() const{ return m_putItem; } /** *

Specifies the DynamoDB table to which the message data will be written. For * example:

{ "dynamoDBv2": { "roleArn": "aws:iam:12341251:my-role" * "putItem": { "tableName": "my-table" } } }

Each attribute in the * message payload will be written to a separate column in the DynamoDB * database.

*/ inline bool PutItemHasBeenSet() const { return m_putItemHasBeenSet; } /** *

Specifies the DynamoDB table to which the message data will be written. For * example:

{ "dynamoDBv2": { "roleArn": "aws:iam:12341251:my-role" * "putItem": { "tableName": "my-table" } } }

Each attribute in the * message payload will be written to a separate column in the DynamoDB * database.

*/ inline void SetPutItem(const PutItemInput& value) { m_putItemHasBeenSet = true; m_putItem = value; } /** *

Specifies the DynamoDB table to which the message data will be written. For * example:

{ "dynamoDBv2": { "roleArn": "aws:iam:12341251:my-role" * "putItem": { "tableName": "my-table" } } }

Each attribute in the * message payload will be written to a separate column in the DynamoDB * database.

*/ inline void SetPutItem(PutItemInput&& value) { m_putItemHasBeenSet = true; m_putItem = std::move(value); } /** *

Specifies the DynamoDB table to which the message data will be written. For * example:

{ "dynamoDBv2": { "roleArn": "aws:iam:12341251:my-role" * "putItem": { "tableName": "my-table" } } }

Each attribute in the * message payload will be written to a separate column in the DynamoDB * database.

*/ inline DynamoDBv2Action& WithPutItem(const PutItemInput& value) { SetPutItem(value); return *this;} /** *

Specifies the DynamoDB table to which the message data will be written. For * example:

{ "dynamoDBv2": { "roleArn": "aws:iam:12341251:my-role" * "putItem": { "tableName": "my-table" } } }

Each attribute in the * message payload will be written to a separate column in the DynamoDB * database.

*/ inline DynamoDBv2Action& WithPutItem(PutItemInput&& value) { SetPutItem(std::move(value)); return *this;} private: Aws::String m_roleArn; bool m_roleArnHasBeenSet = false; PutItemInput m_putItem; bool m_putItemHasBeenSet = false; }; } // namespace Model } // namespace IoT } // namespace Aws