1. Packages
  2. Airbyte Provider
  3. API Docs
  4. DestinationDynamodb
airbyte 0.7.0-beta2 published on Friday, Mar 7, 2025 by airbytehq

airbyte.DestinationDynamodb

Explore with Pulumi AI

airbyte logo
airbyte 0.7.0-beta2 published on Friday, Mar 7, 2025 by airbytehq

    DestinationDynamodb Resource

    Example Usage

    Coming soon!
    
    Coming soon!
    
    Coming soon!
    
    Coming soon!
    
    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()
                    .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")
                    .build())
                .definitionId("f47ce6b2-d7a7-4fd6-8cc3-8ee7d32ea81a")
                .workspaceId("613ace27-5b83-4144-af10-cde0eac3bedf")
                .build());
    
        }
    }
    
    resources:
      myDestinationDynamodb:
        type: airbyte:DestinationDynamodb
        properties:
          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
          definitionId: f47ce6b2-d7a7-4fd6-8cc3-8ee7d32ea81a
          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: &.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
    WorkspaceId string
    DefinitionId string
    The UUID of the connector definition. One of configuration.destinationType or definitionId must be provided. Requires replacement if changed.
    Name string
    Name of the destination e.g. dev-mysql-instance.
    Configuration DestinationDynamodbConfigurationArgs
    WorkspaceId string
    DefinitionId string
    The UUID of the connector definition. One of configuration.destinationType or definitionId must be provided. Requires replacement if changed.
    Name string
    Name of the destination e.g. dev-mysql-instance.
    configuration DestinationDynamodbConfiguration
    workspaceId String
    definitionId String
    The UUID of the connector definition. One of configuration.destinationType or definitionId must be provided. Requires replacement if changed.
    name String
    Name of the destination e.g. dev-mysql-instance.
    configuration DestinationDynamodbConfiguration
    workspaceId string
    definitionId string
    The UUID of the connector definition. One of configuration.destinationType or definitionId must be provided. Requires replacement if changed.
    name string
    Name of the destination e.g. dev-mysql-instance.
    configuration DestinationDynamodbConfigurationArgs
    workspace_id str
    definition_id str
    The UUID of the connector definition. One of configuration.destinationType or definitionId must be provided. Requires replacement if changed.
    name str
    Name of the destination e.g. dev-mysql-instance.
    configuration Property Map
    workspaceId String
    definitionId String
    The UUID of the connector definition. One of configuration.destinationType or definitionId must be provided. 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.
    CreatedAt float64
    DestinationId string
    DestinationType string
    Id string
    The provider-assigned unique ID for this managed resource.
    createdAt Double
    destinationId String
    destinationType String
    id String
    The provider-assigned unique ID for this managed resource.
    createdAt number
    destinationId string
    destinationType string
    id string
    The provider-assigned unique ID for this managed resource.
    created_at float
    destination_id str
    destination_type str
    id str
    The provider-assigned unique ID for this managed resource.
    createdAt Number
    destinationId String
    destinationType String
    id String
    The provider-assigned unique ID for this managed resource.

    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,
            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
    CreatedAt double
    DefinitionId string
    The UUID of the connector definition. One of configuration.destinationType or definitionId must be provided. Requires replacement if changed.
    DestinationId string
    DestinationType string
    Name string
    Name of the destination e.g. dev-mysql-instance.
    WorkspaceId string
    Configuration DestinationDynamodbConfigurationArgs
    CreatedAt float64
    DefinitionId string
    The UUID of the connector definition. One of configuration.destinationType or definitionId must be provided. Requires replacement if changed.
    DestinationId string
    DestinationType string
    Name string
    Name of the destination e.g. dev-mysql-instance.
    WorkspaceId string
    configuration DestinationDynamodbConfiguration
    createdAt Double
    definitionId String
    The UUID of the connector definition. One of configuration.destinationType or definitionId must be provided. Requires replacement if changed.
    destinationId String
    destinationType String
    name String
    Name of the destination e.g. dev-mysql-instance.
    workspaceId String
    configuration DestinationDynamodbConfiguration
    createdAt number
    definitionId string
    The UUID of the connector definition. One of configuration.destinationType or definitionId must be provided. Requires replacement if changed.
    destinationId string
    destinationType string
    name string
    Name of the destination e.g. dev-mysql-instance.
    workspaceId string
    configuration DestinationDynamodbConfigurationArgs
    created_at float
    definition_id str
    The UUID of the connector definition. One of configuration.destinationType or definitionId must be provided. Requires replacement if changed.
    destination_id str
    destination_type str
    name str
    Name of the destination e.g. dev-mysql-instance.
    workspace_id str
    configuration Property Map
    createdAt Number
    definitionId String
    The UUID of the connector definition. One of configuration.destinationType or definitionId must be provided. Requires replacement if changed.
    destinationId String
    destinationType String
    name String
    Name of the destination e.g. dev-mysql-instance.
    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"]

    Import

    $ 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 0.7.0-beta2 published on Friday, Mar 7, 2025 by airbytehq