Interface DynamoDBv2Action.Builder

    • Method Detail

      • roleArn

        DynamoDBv2Action.Builder roleArn​(String roleArn)

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

        Parameters:
        roleArn - The ARN of the IAM role that grants access to the DynamoDB table.
        Returns:
        Returns a reference to this object so that method calls can be chained together.
      • putItem

        DynamoDBv2Action.Builder putItem​(PutItemInput 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.

        Parameters:
        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.

        Returns:
        Returns a reference to this object so that method calls can be chained together.