All Downloads are FREE. Search and download functionalities are using the official Maven repository.

io.kestra.plugin.aws.dynamodb.PutItem Maven / Gradle / Ivy

The newest version!
package io.kestra.plugin.aws.dynamodb;

import com.fasterxml.jackson.core.JsonProcessingException;
import io.kestra.core.exceptions.IllegalVariableEvaluationException;
import io.kestra.core.models.annotations.Example;
import io.kestra.core.models.annotations.Plugin;
import io.kestra.core.models.annotations.PluginProperty;
import io.kestra.core.models.tasks.RunnableTask;
import io.kestra.core.models.tasks.VoidOutput;
import io.kestra.core.runners.RunContext;
import io.kestra.core.serializers.JacksonMapper;
import io.swagger.v3.oas.annotations.media.Schema;
import lombok.EqualsAndHashCode;
import lombok.Getter;
import lombok.NoArgsConstructor;
import lombok.ToString;
import lombok.experimental.SuperBuilder;
import software.amazon.awssdk.services.dynamodb.model.PutItemRequest;

import java.util.Collections;
import java.util.Map;

@SuperBuilder
@ToString
@EqualsAndHashCode
@Getter
@NoArgsConstructor
@Plugin(
    examples = {
        @Example(
            title = "Put an item in map form into a table.",
            full = true,
            code = """
                id: aws_dynamodb_put_item
                namespace: company.team

                tasks:
                  - id: put_item
                    type: io.kestra.plugin.aws.dynamodb.PutItem
                    accessKeyId: ""
                    secretKeyId: ""
                    region: "eu-central-1"
                    tableName: "persons"
                    item:
                      id: 1
                      firstname: "John"
                      lastname: "Doe"
                """
        ),
        @Example(
            title = "Put an item in JSON string form into a table.",
            full = true,
            code = """
                id: aws_dynamodb_put_item
                namespace: company.team

                tasks:
                  - id: put_item
                    type: io.kestra.plugin.aws.dynamodb.PutItem
                    accessKeyId: ""
                    secretKeyId: ""
                    region: "eu-central-1"
                    tableName: "persons"
                    item: "{{ outputs.task_id.data | json }}"
                """
        )
    }
)
@Schema(
    title = "Put an item into a DynamoDB table. If an item with the same key already exists, the element will be updated."
)
public class PutItem extends AbstractDynamoDb implements RunnableTask {
    @Schema(
        title = "The DynamoDB item.",
        description = "The item can be in the form of a JSON string, or a map."
    )
    @PluginProperty(dynamic = true)
    private Object item;

    @Override
    public VoidOutput run(RunContext runContext) throws Exception {
        try (var dynamoDb = client(runContext)) {
            var fields = fields(runContext, this.item);
            var item = valueMapFrom(fields);

            var putRequest = PutItemRequest.builder()
                .tableName(runContext.render(this.tableName))
                .item(item)
                .build();
            dynamoDb.putItem(putRequest);

            return null;
        }
    }

    @SuppressWarnings("unchecked")
    private Map fields(RunContext runContext, Object value) throws IllegalVariableEvaluationException, JsonProcessingException {
        if (value instanceof String) {
            return JacksonMapper.toMap(runContext.render((String) value));
        } else if (value instanceof Map) {
            return runContext.render((Map) value);
        } else if (value == null) {
            return Collections.emptyMap();
        }

        throw new IllegalVariableEvaluationException("Invalid value type '" + value.getClass() + "'");
    }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy