1. Packages
  2. Airbyte Provider
  3. API Docs
  4. DestinationDynamodb
airbyte 1.0.0-rc6 published on Monday, Feb 16, 2026 by airbytehq
airbyte logo
airbyte 1.0.0-rc6 published on Monday, Feb 16, 2026 by airbytehq

    DestinationDynamodb Resource

    Example Usage

    import * as pulumi from "@pulumi/pulumi";
    import * as airbyte from "@pulumi/airbyte";
    
    const myDestinationDynamodb = new airbyte.DestinationDynamodb("my_destination_dynamodb", {
        configuration: {
            accessKeyId: "A012345678910EXAMPLE",
            dynamodbEndpoint: "http://localhost:9000",
            dynamodbRegion: "ca-west-1",
            dynamodbTableNamePrefix: "airbyte_sync",
            secretAccessKey: "a012345678910ABCDEFGH/AbCdEfGhEXAMPLEKEY",
        },
        definitionId: "f47ce6b2-d7a7-4fd6-8cc3-8ee7d32ea81a",
        name: "...my_name...",
        workspaceId: "613ace27-5b83-4144-af10-cde0eac3bedf",
    });
    
    import pulumi
    import pulumi_airbyte as airbyte
    
    my_destination_dynamodb = airbyte.DestinationDynamodb("my_destination_dynamodb",
        configuration={
            "access_key_id": "A012345678910EXAMPLE",
            "dynamodb_endpoint": "http://localhost:9000",
            "dynamodb_region": "ca-west-1",
            "dynamodb_table_name_prefix": "airbyte_sync",
            "secret_access_key": "a012345678910ABCDEFGH/AbCdEfGhEXAMPLEKEY",
        },
        definition_id="f47ce6b2-d7a7-4fd6-8cc3-8ee7d32ea81a",
        name="...my_name...",
        workspace_id="613ace27-5b83-4144-af10-cde0eac3bedf")
    
    package main
    
    import (
    	"github.com/pulumi/pulumi-terraform-provider/sdks/go/airbyte/airbyte"
    	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
    )
    
    func main() {
    	pulumi.Run(func(ctx *pulumi.Context) error {
    		_, err := airbyte.NewDestinationDynamodb(ctx, "my_destination_dynamodb", &airbyte.DestinationDynamodbArgs{
    			Configuration: &airbyte.DestinationDynamodbConfigurationArgs{
    				AccessKeyId:             pulumi.String("A012345678910EXAMPLE"),
    				DynamodbEndpoint:        pulumi.String("http://localhost:9000"),
    				DynamodbRegion:          pulumi.String("ca-west-1"),
    				DynamodbTableNamePrefix: pulumi.String("airbyte_sync"),
    				SecretAccessKey:         pulumi.String("a012345678910ABCDEFGH/AbCdEfGhEXAMPLEKEY"),
    			},
    			DefinitionId: pulumi.String("f47ce6b2-d7a7-4fd6-8cc3-8ee7d32ea81a"),
    			Name:         pulumi.String("...my_name..."),
    			WorkspaceId:  pulumi.String("613ace27-5b83-4144-af10-cde0eac3bedf"),
    		})
    		if err != nil {
    			return err
    		}
    		return nil
    	})
    }
    
    using System.Collections.Generic;
    using System.Linq;
    using Pulumi;
    using Airbyte = Pulumi.Airbyte;
    
    return await Deployment.RunAsync(() => 
    {
        var myDestinationDynamodb = new Airbyte.DestinationDynamodb("my_destination_dynamodb", new()
        {
            Configuration = new Airbyte.Inputs.DestinationDynamodbConfigurationArgs
            {
                AccessKeyId = "A012345678910EXAMPLE",
                DynamodbEndpoint = "http://localhost:9000",
                DynamodbRegion = "ca-west-1",
                DynamodbTableNamePrefix = "airbyte_sync",
                SecretAccessKey = "a012345678910ABCDEFGH/AbCdEfGhEXAMPLEKEY",
            },
            DefinitionId = "f47ce6b2-d7a7-4fd6-8cc3-8ee7d32ea81a",
            Name = "...my_name...",
            WorkspaceId = "613ace27-5b83-4144-af10-cde0eac3bedf",
        });
    
    });
    
    package generated_program;
    
    import com.pulumi.Context;
    import com.pulumi.Pulumi;
    import com.pulumi.core.Output;
    import com.pulumi.airbyte.DestinationDynamodb;
    import com.pulumi.airbyte.DestinationDynamodbArgs;
    import com.pulumi.airbyte.inputs.DestinationDynamodbConfigurationArgs;
    import java.util.List;
    import java.util.ArrayList;
    import java.util.Map;
    import java.io.File;
    import java.nio.file.Files;
    import java.nio.file.Paths;
    
    public class App {
        public static void main(String[] args) {
            Pulumi.run(App::stack);
        }
    
        public static void stack(Context ctx) {
            var myDestinationDynamodb = new DestinationDynamodb("myDestinationDynamodb", DestinationDynamodbArgs.builder()
                .configuration(DestinationDynamodbConfigurationArgs.builder()
                    .accessKeyId("A012345678910EXAMPLE")
                    .dynamodbEndpoint("http://localhost:9000")
                    .dynamodbRegion("ca-west-1")
                    .dynamodbTableNamePrefix("airbyte_sync")
                    .secretAccessKey("a012345678910ABCDEFGH/AbCdEfGhEXAMPLEKEY")
                    .build())
                .definitionId("f47ce6b2-d7a7-4fd6-8cc3-8ee7d32ea81a")
                .name("...my_name...")
                .workspaceId("613ace27-5b83-4144-af10-cde0eac3bedf")
                .build());
    
        }
    }
    
    resources:
      myDestinationDynamodb:
        type: airbyte:DestinationDynamodb
        name: my_destination_dynamodb
        properties:
          configuration:
            accessKeyId: A012345678910EXAMPLE
            dynamodbEndpoint: http://localhost:9000
            dynamodbRegion: ca-west-1
            dynamodbTableNamePrefix: airbyte_sync
            secretAccessKey: a012345678910ABCDEFGH/AbCdEfGhEXAMPLEKEY
          definitionId: f47ce6b2-d7a7-4fd6-8cc3-8ee7d32ea81a
          name: '...my_name...'
          workspaceId: 613ace27-5b83-4144-af10-cde0eac3bedf
    

    Create DestinationDynamodb Resource

    Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.

    Constructor syntax

    new DestinationDynamodb(name: string, args: DestinationDynamodbArgs, opts?: CustomResourceOptions);
    @overload
    def DestinationDynamodb(resource_name: str,
                            args: DestinationDynamodbArgs,
                            opts: Optional[ResourceOptions] = None)
    
    @overload
    def DestinationDynamodb(resource_name: str,
                            opts: Optional[ResourceOptions] = None,
                            configuration: Optional[DestinationDynamodbConfigurationArgs] = None,
                            workspace_id: Optional[str] = None,
                            definition_id: Optional[str] = None,
                            name: Optional[str] = None)
    func NewDestinationDynamodb(ctx *Context, name string, args DestinationDynamodbArgs, opts ...ResourceOption) (*DestinationDynamodb, error)
    public DestinationDynamodb(string name, DestinationDynamodbArgs args, CustomResourceOptions? opts = null)
    public DestinationDynamodb(String name, DestinationDynamodbArgs args)
    public DestinationDynamodb(String name, DestinationDynamodbArgs args, CustomResourceOptions options)
    
    type: airbyte:DestinationDynamodb
    properties: # The arguments to resource properties.
    options: # Bag of options to control resource's behavior.
    
    

    Parameters

    name string
    The unique name of the resource.
    args DestinationDynamodbArgs
    The arguments to resource properties.
    opts CustomResourceOptions
    Bag of options to control resource's behavior.
    resource_name str
    The unique name of the resource.
    args DestinationDynamodbArgs
    The arguments to resource properties.
    opts ResourceOptions
    Bag of options to control resource's behavior.
    ctx Context
    Context object for the current deployment.
    name string
    The unique name of the resource.
    args DestinationDynamodbArgs
    The arguments to resource properties.
    opts ResourceOption
    Bag of options to control resource's behavior.
    name string
    The unique name of the resource.
    args DestinationDynamodbArgs
    The arguments to resource properties.
    opts CustomResourceOptions
    Bag of options to control resource's behavior.
    name String
    The unique name of the resource.
    args DestinationDynamodbArgs
    The arguments to resource properties.
    options CustomResourceOptions
    Bag of options to control resource's behavior.

    Constructor example

    The following reference example uses placeholder values for all input properties.

    var destinationDynamodbResource = new Airbyte.DestinationDynamodb("destinationDynamodbResource", new()
    {
        Configuration = new Airbyte.Inputs.DestinationDynamodbConfigurationArgs
        {
            AccessKeyId = "string",
            DynamodbTableNamePrefix = "string",
            SecretAccessKey = "string",
            DynamodbEndpoint = "string",
            DynamodbRegion = "string",
        },
        WorkspaceId = "string",
        DefinitionId = "string",
        Name = "string",
    });
    
    example, err := airbyte.NewDestinationDynamodb(ctx, "destinationDynamodbResource", &airbyte.DestinationDynamodbArgs{
    	Configuration: &airbyte.DestinationDynamodbConfigurationArgs{
    		AccessKeyId:             pulumi.String("string"),
    		DynamodbTableNamePrefix: pulumi.String("string"),
    		SecretAccessKey:         pulumi.String("string"),
    		DynamodbEndpoint:        pulumi.String("string"),
    		DynamodbRegion:          pulumi.String("string"),
    	},
    	WorkspaceId:  pulumi.String("string"),
    	DefinitionId: pulumi.String("string"),
    	Name:         pulumi.String("string"),
    })
    
    var destinationDynamodbResource = new DestinationDynamodb("destinationDynamodbResource", DestinationDynamodbArgs.builder()
        .configuration(DestinationDynamodbConfigurationArgs.builder()
            .accessKeyId("string")
            .dynamodbTableNamePrefix("string")
            .secretAccessKey("string")
            .dynamodbEndpoint("string")
            .dynamodbRegion("string")
            .build())
        .workspaceId("string")
        .definitionId("string")
        .name("string")
        .build());
    
    destination_dynamodb_resource = airbyte.DestinationDynamodb("destinationDynamodbResource",
        configuration={
            "access_key_id": "string",
            "dynamodb_table_name_prefix": "string",
            "secret_access_key": "string",
            "dynamodb_endpoint": "string",
            "dynamodb_region": "string",
        },
        workspace_id="string",
        definition_id="string",
        name="string")
    
    const destinationDynamodbResource = new airbyte.DestinationDynamodb("destinationDynamodbResource", {
        configuration: {
            accessKeyId: "string",
            dynamodbTableNamePrefix: "string",
            secretAccessKey: "string",
            dynamodbEndpoint: "string",
            dynamodbRegion: "string",
        },
        workspaceId: "string",
        definitionId: "string",
        name: "string",
    });
    
    type: airbyte:DestinationDynamodb
    properties:
        configuration:
            accessKeyId: string
            dynamodbEndpoint: string
            dynamodbRegion: string
            dynamodbTableNamePrefix: string
            secretAccessKey: string
        definitionId: string
        name: string
        workspaceId: string
    

    DestinationDynamodb Resource Properties

    To learn more about resource properties and how to use them, see Inputs and Outputs in the Architecture and Concepts docs.

    Inputs

    In Python, inputs that are objects can be passed either as argument classes or as dictionary literals.

    The DestinationDynamodb resource accepts the following input properties:

    Configuration DestinationDynamodbConfiguration
    The values required to configure the destination. The schema for this must match the schema return by destinationdefinitionspecifications/get for the destinationDefinition.
    WorkspaceId string
    DefinitionId string
    The UUID of the connector definition. One of configuration.destinationType or definitionId must be provided. Default: "8ccd8909-4e99-4141-b48d-4984b70b2d89"; Requires replacement if changed.
    Name string
    Name of the destination e.g. dev-mysql-instance.
    Configuration DestinationDynamodbConfigurationArgs
    The values required to configure the destination. The schema for this must match the schema return by destinationdefinitionspecifications/get for the destinationDefinition.
    WorkspaceId string
    DefinitionId string
    The UUID of the connector definition. One of configuration.destinationType or definitionId must be provided. Default: "8ccd8909-4e99-4141-b48d-4984b70b2d89"; Requires replacement if changed.
    Name string
    Name of the destination e.g. dev-mysql-instance.
    configuration DestinationDynamodbConfiguration
    The values required to configure the destination. The schema for this must match the schema return by destinationdefinitionspecifications/get for the destinationDefinition.
    workspaceId String
    definitionId String
    The UUID of the connector definition. One of configuration.destinationType or definitionId must be provided. Default: "8ccd8909-4e99-4141-b48d-4984b70b2d89"; Requires replacement if changed.
    name String
    Name of the destination e.g. dev-mysql-instance.
    configuration DestinationDynamodbConfiguration
    The values required to configure the destination. The schema for this must match the schema return by destinationdefinitionspecifications/get for the destinationDefinition.
    workspaceId string
    definitionId string
    The UUID of the connector definition. One of configuration.destinationType or definitionId must be provided. Default: "8ccd8909-4e99-4141-b48d-4984b70b2d89"; Requires replacement if changed.
    name string
    Name of the destination e.g. dev-mysql-instance.
    configuration DestinationDynamodbConfigurationArgs
    The values required to configure the destination. The schema for this must match the schema return by destinationdefinitionspecifications/get for the destinationDefinition.
    workspace_id str
    definition_id str
    The UUID of the connector definition. One of configuration.destinationType or definitionId must be provided. Default: "8ccd8909-4e99-4141-b48d-4984b70b2d89"; Requires replacement if changed.
    name str
    Name of the destination e.g. dev-mysql-instance.
    configuration Property Map
    The values required to configure the destination. The schema for this must match the schema return by destinationdefinitionspecifications/get for the destinationDefinition.
    workspaceId String
    definitionId String
    The UUID of the connector definition. One of configuration.destinationType or definitionId must be provided. Default: "8ccd8909-4e99-4141-b48d-4984b70b2d89"; Requires replacement if changed.
    name String
    Name of the destination e.g. dev-mysql-instance.

    Outputs

    All input properties are implicitly available as output properties. Additionally, the DestinationDynamodb resource produces the following output properties:

    CreatedAt double
    DestinationId string
    DestinationType string
    Id string
    The provider-assigned unique ID for this managed resource.
    ResourceAllocation DestinationDynamodbResourceAllocation
    actor or actor definition specific resource requirements. if default is set, these are the requirements that should be set for ALL jobs run for this actor definition. it is overriden by the job type specific configurations. if not set, the platform will use defaults. these values will be overriden by configuration at the connection level.
    CreatedAt float64
    DestinationId string
    DestinationType string
    Id string
    The provider-assigned unique ID for this managed resource.
    ResourceAllocation DestinationDynamodbResourceAllocation
    actor or actor definition specific resource requirements. if default is set, these are the requirements that should be set for ALL jobs run for this actor definition. it is overriden by the job type specific configurations. if not set, the platform will use defaults. these values will be overriden by configuration at the connection level.
    createdAt Double
    destinationId String
    destinationType String
    id String
    The provider-assigned unique ID for this managed resource.
    resourceAllocation DestinationDynamodbResourceAllocation
    actor or actor definition specific resource requirements. if default is set, these are the requirements that should be set for ALL jobs run for this actor definition. it is overriden by the job type specific configurations. if not set, the platform will use defaults. these values will be overriden by configuration at the connection level.
    createdAt number
    destinationId string
    destinationType string
    id string
    The provider-assigned unique ID for this managed resource.
    resourceAllocation DestinationDynamodbResourceAllocation
    actor or actor definition specific resource requirements. if default is set, these are the requirements that should be set for ALL jobs run for this actor definition. it is overriden by the job type specific configurations. if not set, the platform will use defaults. these values will be overriden by configuration at the connection level.
    created_at float
    destination_id str
    destination_type str
    id str
    The provider-assigned unique ID for this managed resource.
    resource_allocation DestinationDynamodbResourceAllocation
    actor or actor definition specific resource requirements. if default is set, these are the requirements that should be set for ALL jobs run for this actor definition. it is overriden by the job type specific configurations. if not set, the platform will use defaults. these values will be overriden by configuration at the connection level.
    createdAt Number
    destinationId String
    destinationType String
    id String
    The provider-assigned unique ID for this managed resource.
    resourceAllocation Property Map
    actor or actor definition specific resource requirements. if default is set, these are the requirements that should be set for ALL jobs run for this actor definition. it is overriden by the job type specific configurations. if not set, the platform will use defaults. these values will be overriden by configuration at the connection level.

    Look up Existing DestinationDynamodb Resource

    Get an existing DestinationDynamodb resource’s state with the given name, ID, and optional extra properties used to qualify the lookup.

    public static get(name: string, id: Input<ID>, state?: DestinationDynamodbState, opts?: CustomResourceOptions): DestinationDynamodb
    @staticmethod
    def get(resource_name: str,
            id: str,
            opts: Optional[ResourceOptions] = None,
            configuration: Optional[DestinationDynamodbConfigurationArgs] = None,
            created_at: Optional[float] = None,
            definition_id: Optional[str] = None,
            destination_id: Optional[str] = None,
            destination_type: Optional[str] = None,
            name: Optional[str] = None,
            resource_allocation: Optional[DestinationDynamodbResourceAllocationArgs] = None,
            workspace_id: Optional[str] = None) -> DestinationDynamodb
    func GetDestinationDynamodb(ctx *Context, name string, id IDInput, state *DestinationDynamodbState, opts ...ResourceOption) (*DestinationDynamodb, error)
    public static DestinationDynamodb Get(string name, Input<string> id, DestinationDynamodbState? state, CustomResourceOptions? opts = null)
    public static DestinationDynamodb get(String name, Output<String> id, DestinationDynamodbState state, CustomResourceOptions options)
    resources:  _:    type: airbyte:DestinationDynamodb    get:      id: ${id}
    name
    The unique name of the resulting resource.
    id
    The unique provider ID of the resource to lookup.
    state
    Any extra arguments used during the lookup.
    opts
    A bag of options that control this resource's behavior.
    resource_name
    The unique name of the resulting resource.
    id
    The unique provider ID of the resource to lookup.
    name
    The unique name of the resulting resource.
    id
    The unique provider ID of the resource to lookup.
    state
    Any extra arguments used during the lookup.
    opts
    A bag of options that control this resource's behavior.
    name
    The unique name of the resulting resource.
    id
    The unique provider ID of the resource to lookup.
    state
    Any extra arguments used during the lookup.
    opts
    A bag of options that control this resource's behavior.
    name
    The unique name of the resulting resource.
    id
    The unique provider ID of the resource to lookup.
    state
    Any extra arguments used during the lookup.
    opts
    A bag of options that control this resource's behavior.
    The following state arguments are supported:
    Configuration DestinationDynamodbConfiguration
    The values required to configure the destination. The schema for this must match the schema return by destinationdefinitionspecifications/get for the destinationDefinition.
    CreatedAt double
    DefinitionId string
    The UUID of the connector definition. One of configuration.destinationType or definitionId must be provided. Default: "8ccd8909-4e99-4141-b48d-4984b70b2d89"; Requires replacement if changed.
    DestinationId string
    DestinationType string
    Name string
    Name of the destination e.g. dev-mysql-instance.
    ResourceAllocation DestinationDynamodbResourceAllocation
    actor or actor definition specific resource requirements. if default is set, these are the requirements that should be set for ALL jobs run for this actor definition. it is overriden by the job type specific configurations. if not set, the platform will use defaults. these values will be overriden by configuration at the connection level.
    WorkspaceId string
    Configuration DestinationDynamodbConfigurationArgs
    The values required to configure the destination. The schema for this must match the schema return by destinationdefinitionspecifications/get for the destinationDefinition.
    CreatedAt float64
    DefinitionId string
    The UUID of the connector definition. One of configuration.destinationType or definitionId must be provided. Default: "8ccd8909-4e99-4141-b48d-4984b70b2d89"; Requires replacement if changed.
    DestinationId string
    DestinationType string
    Name string
    Name of the destination e.g. dev-mysql-instance.
    ResourceAllocation DestinationDynamodbResourceAllocationArgs
    actor or actor definition specific resource requirements. if default is set, these are the requirements that should be set for ALL jobs run for this actor definition. it is overriden by the job type specific configurations. if not set, the platform will use defaults. these values will be overriden by configuration at the connection level.
    WorkspaceId string
    configuration DestinationDynamodbConfiguration
    The values required to configure the destination. The schema for this must match the schema return by destinationdefinitionspecifications/get for the destinationDefinition.
    createdAt Double
    definitionId String
    The UUID of the connector definition. One of configuration.destinationType or definitionId must be provided. Default: "8ccd8909-4e99-4141-b48d-4984b70b2d89"; Requires replacement if changed.
    destinationId String
    destinationType String
    name String
    Name of the destination e.g. dev-mysql-instance.
    resourceAllocation DestinationDynamodbResourceAllocation
    actor or actor definition specific resource requirements. if default is set, these are the requirements that should be set for ALL jobs run for this actor definition. it is overriden by the job type specific configurations. if not set, the platform will use defaults. these values will be overriden by configuration at the connection level.
    workspaceId String
    configuration DestinationDynamodbConfiguration
    The values required to configure the destination. The schema for this must match the schema return by destinationdefinitionspecifications/get for the destinationDefinition.
    createdAt number
    definitionId string
    The UUID of the connector definition. One of configuration.destinationType or definitionId must be provided. Default: "8ccd8909-4e99-4141-b48d-4984b70b2d89"; Requires replacement if changed.
    destinationId string
    destinationType string
    name string
    Name of the destination e.g. dev-mysql-instance.
    resourceAllocation DestinationDynamodbResourceAllocation
    actor or actor definition specific resource requirements. if default is set, these are the requirements that should be set for ALL jobs run for this actor definition. it is overriden by the job type specific configurations. if not set, the platform will use defaults. these values will be overriden by configuration at the connection level.
    workspaceId string
    configuration DestinationDynamodbConfigurationArgs
    The values required to configure the destination. The schema for this must match the schema return by destinationdefinitionspecifications/get for the destinationDefinition.
    created_at float
    definition_id str
    The UUID of the connector definition. One of configuration.destinationType or definitionId must be provided. Default: "8ccd8909-4e99-4141-b48d-4984b70b2d89"; Requires replacement if changed.
    destination_id str
    destination_type str
    name str
    Name of the destination e.g. dev-mysql-instance.
    resource_allocation DestinationDynamodbResourceAllocationArgs
    actor or actor definition specific resource requirements. if default is set, these are the requirements that should be set for ALL jobs run for this actor definition. it is overriden by the job type specific configurations. if not set, the platform will use defaults. these values will be overriden by configuration at the connection level.
    workspace_id str
    configuration Property Map
    The values required to configure the destination. The schema for this must match the schema return by destinationdefinitionspecifications/get for the destinationDefinition.
    createdAt Number
    definitionId String
    The UUID of the connector definition. One of configuration.destinationType or definitionId must be provided. Default: "8ccd8909-4e99-4141-b48d-4984b70b2d89"; Requires replacement if changed.
    destinationId String
    destinationType String
    name String
    Name of the destination e.g. dev-mysql-instance.
    resourceAllocation Property Map
    actor or actor definition specific resource requirements. if default is set, these are the requirements that should be set for ALL jobs run for this actor definition. it is overriden by the job type specific configurations. if not set, the platform will use defaults. these values will be overriden by configuration at the connection level.
    workspaceId String

    Supporting Types

    DestinationDynamodbConfiguration, DestinationDynamodbConfigurationArgs

    AccessKeyId string
    The access key id to access the DynamoDB. Airbyte requires Read and Write permissions to the DynamoDB.
    DynamodbTableNamePrefix string
    The prefix to use when naming DynamoDB tables.
    SecretAccessKey string
    The corresponding secret to the access key id.
    DynamodbEndpoint string
    This is your DynamoDB endpoint url.(if you are working with AWS DynamoDB, just leave empty). Default: ""
    DynamodbRegion string
    The region of the DynamoDB. Default: ""; must be one of ["", "af-south-1", "ap-east-1", "ap-northeast-1", "ap-northeast-2", "ap-northeast-3", "ap-south-1", "ap-south-2", "ap-southeast-1", "ap-southeast-2", "ap-southeast-3", "ap-southeast-4", "ca-central-1", "ca-west-1", "cn-north-1", "cn-northwest-1", "eu-central-1", "eu-central-2", "eu-north-1", "eu-south-1", "eu-south-2", "eu-west-1", "eu-west-2", "eu-west-3", "il-central-1", "me-central-1", "me-south-1", "sa-east-1", "us-east-1", "us-east-2", "us-gov-east-1", "us-gov-west-1", "us-west-1", "us-west-2"]
    AccessKeyId string
    The access key id to access the DynamoDB. Airbyte requires Read and Write permissions to the DynamoDB.
    DynamodbTableNamePrefix string
    The prefix to use when naming DynamoDB tables.
    SecretAccessKey string
    The corresponding secret to the access key id.
    DynamodbEndpoint string
    This is your DynamoDB endpoint url.(if you are working with AWS DynamoDB, just leave empty). Default: ""
    DynamodbRegion string
    The region of the DynamoDB. Default: ""; must be one of ["", "af-south-1", "ap-east-1", "ap-northeast-1", "ap-northeast-2", "ap-northeast-3", "ap-south-1", "ap-south-2", "ap-southeast-1", "ap-southeast-2", "ap-southeast-3", "ap-southeast-4", "ca-central-1", "ca-west-1", "cn-north-1", "cn-northwest-1", "eu-central-1", "eu-central-2", "eu-north-1", "eu-south-1", "eu-south-2", "eu-west-1", "eu-west-2", "eu-west-3", "il-central-1", "me-central-1", "me-south-1", "sa-east-1", "us-east-1", "us-east-2", "us-gov-east-1", "us-gov-west-1", "us-west-1", "us-west-2"]
    accessKeyId String
    The access key id to access the DynamoDB. Airbyte requires Read and Write permissions to the DynamoDB.
    dynamodbTableNamePrefix String
    The prefix to use when naming DynamoDB tables.
    secretAccessKey String
    The corresponding secret to the access key id.
    dynamodbEndpoint String
    This is your DynamoDB endpoint url.(if you are working with AWS DynamoDB, just leave empty). Default: ""
    dynamodbRegion String
    The region of the DynamoDB. Default: ""; must be one of ["", "af-south-1", "ap-east-1", "ap-northeast-1", "ap-northeast-2", "ap-northeast-3", "ap-south-1", "ap-south-2", "ap-southeast-1", "ap-southeast-2", "ap-southeast-3", "ap-southeast-4", "ca-central-1", "ca-west-1", "cn-north-1", "cn-northwest-1", "eu-central-1", "eu-central-2", "eu-north-1", "eu-south-1", "eu-south-2", "eu-west-1", "eu-west-2", "eu-west-3", "il-central-1", "me-central-1", "me-south-1", "sa-east-1", "us-east-1", "us-east-2", "us-gov-east-1", "us-gov-west-1", "us-west-1", "us-west-2"]
    accessKeyId string
    The access key id to access the DynamoDB. Airbyte requires Read and Write permissions to the DynamoDB.
    dynamodbTableNamePrefix string
    The prefix to use when naming DynamoDB tables.
    secretAccessKey string
    The corresponding secret to the access key id.
    dynamodbEndpoint string
    This is your DynamoDB endpoint url.(if you are working with AWS DynamoDB, just leave empty). Default: ""
    dynamodbRegion string
    The region of the DynamoDB. Default: ""; must be one of ["", "af-south-1", "ap-east-1", "ap-northeast-1", "ap-northeast-2", "ap-northeast-3", "ap-south-1", "ap-south-2", "ap-southeast-1", "ap-southeast-2", "ap-southeast-3", "ap-southeast-4", "ca-central-1", "ca-west-1", "cn-north-1", "cn-northwest-1", "eu-central-1", "eu-central-2", "eu-north-1", "eu-south-1", "eu-south-2", "eu-west-1", "eu-west-2", "eu-west-3", "il-central-1", "me-central-1", "me-south-1", "sa-east-1", "us-east-1", "us-east-2", "us-gov-east-1", "us-gov-west-1", "us-west-1", "us-west-2"]
    access_key_id str
    The access key id to access the DynamoDB. Airbyte requires Read and Write permissions to the DynamoDB.
    dynamodb_table_name_prefix str
    The prefix to use when naming DynamoDB tables.
    secret_access_key str
    The corresponding secret to the access key id.
    dynamodb_endpoint str
    This is your DynamoDB endpoint url.(if you are working with AWS DynamoDB, just leave empty). Default: ""
    dynamodb_region str
    The region of the DynamoDB. Default: ""; must be one of ["", "af-south-1", "ap-east-1", "ap-northeast-1", "ap-northeast-2", "ap-northeast-3", "ap-south-1", "ap-south-2", "ap-southeast-1", "ap-southeast-2", "ap-southeast-3", "ap-southeast-4", "ca-central-1", "ca-west-1", "cn-north-1", "cn-northwest-1", "eu-central-1", "eu-central-2", "eu-north-1", "eu-south-1", "eu-south-2", "eu-west-1", "eu-west-2", "eu-west-3", "il-central-1", "me-central-1", "me-south-1", "sa-east-1", "us-east-1", "us-east-2", "us-gov-east-1", "us-gov-west-1", "us-west-1", "us-west-2"]
    accessKeyId String
    The access key id to access the DynamoDB. Airbyte requires Read and Write permissions to the DynamoDB.
    dynamodbTableNamePrefix String
    The prefix to use when naming DynamoDB tables.
    secretAccessKey String
    The corresponding secret to the access key id.
    dynamodbEndpoint String
    This is your DynamoDB endpoint url.(if you are working with AWS DynamoDB, just leave empty). Default: ""
    dynamodbRegion String
    The region of the DynamoDB. Default: ""; must be one of ["", "af-south-1", "ap-east-1", "ap-northeast-1", "ap-northeast-2", "ap-northeast-3", "ap-south-1", "ap-south-2", "ap-southeast-1", "ap-southeast-2", "ap-southeast-3", "ap-southeast-4", "ca-central-1", "ca-west-1", "cn-north-1", "cn-northwest-1", "eu-central-1", "eu-central-2", "eu-north-1", "eu-south-1", "eu-south-2", "eu-west-1", "eu-west-2", "eu-west-3", "il-central-1", "me-central-1", "me-south-1", "sa-east-1", "us-east-1", "us-east-2", "us-gov-east-1", "us-gov-west-1", "us-west-1", "us-west-2"]

    DestinationDynamodbResourceAllocation, DestinationDynamodbResourceAllocationArgs

    Default DestinationDynamodbResourceAllocationDefault
    optional resource requirements to run workers (blank for unbounded allocations)
    JobSpecifics List<DestinationDynamodbResourceAllocationJobSpecific>
    Default DestinationDynamodbResourceAllocationDefault
    optional resource requirements to run workers (blank for unbounded allocations)
    JobSpecifics []DestinationDynamodbResourceAllocationJobSpecific
    default_ DestinationDynamodbResourceAllocationDefault
    optional resource requirements to run workers (blank for unbounded allocations)
    jobSpecifics List<DestinationDynamodbResourceAllocationJobSpecific>
    default DestinationDynamodbResourceAllocationDefault
    optional resource requirements to run workers (blank for unbounded allocations)
    jobSpecifics DestinationDynamodbResourceAllocationJobSpecific[]
    default Property Map
    optional resource requirements to run workers (blank for unbounded allocations)
    jobSpecifics List<Property Map>

    DestinationDynamodbResourceAllocationDefault, DestinationDynamodbResourceAllocationDefaultArgs

    DestinationDynamodbResourceAllocationJobSpecific, DestinationDynamodbResourceAllocationJobSpecificArgs

    JobType string
    enum that describes the different types of jobs that the platform runs.
    ResourceRequirements DestinationDynamodbResourceAllocationJobSpecificResourceRequirements
    optional resource requirements to run workers (blank for unbounded allocations)
    JobType string
    enum that describes the different types of jobs that the platform runs.
    ResourceRequirements DestinationDynamodbResourceAllocationJobSpecificResourceRequirements
    optional resource requirements to run workers (blank for unbounded allocations)
    jobType String
    enum that describes the different types of jobs that the platform runs.
    resourceRequirements DestinationDynamodbResourceAllocationJobSpecificResourceRequirements
    optional resource requirements to run workers (blank for unbounded allocations)
    jobType string
    enum that describes the different types of jobs that the platform runs.
    resourceRequirements DestinationDynamodbResourceAllocationJobSpecificResourceRequirements
    optional resource requirements to run workers (blank for unbounded allocations)
    job_type str
    enum that describes the different types of jobs that the platform runs.
    resource_requirements DestinationDynamodbResourceAllocationJobSpecificResourceRequirements
    optional resource requirements to run workers (blank for unbounded allocations)
    jobType String
    enum that describes the different types of jobs that the platform runs.
    resourceRequirements Property Map
    optional resource requirements to run workers (blank for unbounded allocations)

    DestinationDynamodbResourceAllocationJobSpecificResourceRequirements, DestinationDynamodbResourceAllocationJobSpecificResourceRequirementsArgs

    Import

    In Terraform v1.5.0 and later, the import block can be used with the id attribute, for example:

    terraform

    import {

    to = airbyte_destination_dynamodb.my_airbyte_destination_dynamodb

    id = “…”

    }

    The pulumi import command can be used, for example:

    $ pulumi import airbyte:index/destinationDynamodb:DestinationDynamodb my_airbyte_destination_dynamodb "..."
    

    To learn more about importing existing cloud resources, see Importing resources.

    Package Details

    Repository
    airbyte airbytehq/terraform-provider-airbyte
    License
    Notes
    This Pulumi package is based on the airbyte Terraform Provider.
    airbyte logo
    airbyte 1.0.0-rc6 published on Monday, Feb 16, 2026 by airbytehq
      Meet Neo: Your AI Platform Teammate