airbyte.DestinationDynamodb
Explore with Pulumi AI
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
Destination
Dynamodb Configuration - Workspace
Id string - Definition
Id 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
Destination
Dynamodb Configuration Args - Workspace
Id string - Definition
Id 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
Destination
Dynamodb Configuration - workspace
Id String - definition
Id 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
Destination
Dynamodb Configuration - workspace
Id string - definition
Id 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
Destination
Dynamodb Configuration Args - 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
- workspace
Id String - definition
Id 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:
- Created
At double - Destination
Id string - Destination
Type string - Id string
- The provider-assigned unique ID for this managed resource.
- Resource
Allocation DestinationDynamodb Resource Allocation - 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 float64 - Destination
Id string - Destination
Type string - Id string
- The provider-assigned unique ID for this managed resource.
- Resource
Allocation DestinationDynamodb Resource Allocation - 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 Double - destination
Id String - destination
Type String - id String
- The provider-assigned unique ID for this managed resource.
- resource
Allocation DestinationDynamodb Resource Allocation - 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 number - destination
Id string - destination
Type string - id string
- The provider-assigned unique ID for this managed resource.
- resource
Allocation DestinationDynamodb Resource Allocation - 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 DestinationDynamodb Resource Allocation - 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 Number - destination
Id String - destination
Type String - id String
- The provider-assigned unique ID for this managed resource.
- resource
Allocation 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.
- Configuration
Destination
Dynamodb Configuration - Created
At double - Definition
Id string - The UUID of the connector definition. One of configuration.destinationType or definitionId must be provided. Requires replacement if changed.
- Destination
Id string - Destination
Type string - Name string
- Name of the destination e.g. dev-mysql-instance.
- Resource
Allocation DestinationDynamodb Resource Allocation - 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 string
- Configuration
Destination
Dynamodb Configuration Args - Created
At float64 - Definition
Id string - The UUID of the connector definition. One of configuration.destinationType or definitionId must be provided. Requires replacement if changed.
- Destination
Id string - Destination
Type string - Name string
- Name of the destination e.g. dev-mysql-instance.
- Resource
Allocation DestinationDynamodb Resource Allocation Args - 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 string
- configuration
Destination
Dynamodb Configuration - created
At Double - definition
Id String - The UUID of the connector definition. One of configuration.destinationType or definitionId must be provided. Requires replacement if changed.
- destination
Id String - destination
Type String - name String
- Name of the destination e.g. dev-mysql-instance.
- resource
Allocation DestinationDynamodb Resource Allocation - 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 String
- configuration
Destination
Dynamodb Configuration - created
At number - definition
Id string - The UUID of the connector definition. One of configuration.destinationType or definitionId must be provided. Requires replacement if changed.
- destination
Id string - destination
Type string - name string
- Name of the destination e.g. dev-mysql-instance.
- resource
Allocation DestinationDynamodb Resource Allocation - 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 string
- configuration
Destination
Dynamodb Configuration Args - 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.
- resource_
allocation DestinationDynamodb Resource Allocation Args - 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
- created
At Number - definition
Id String - The UUID of the connector definition. One of configuration.destinationType or definitionId must be provided. Requires replacement if changed.
- destination
Id String - destination
Type String - name String
- Name of the destination e.g. dev-mysql-instance.
- resource
Allocation 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.
- workspace
Id String
Supporting Types
DestinationDynamodbConfiguration, DestinationDynamodbConfigurationArgs
- Access
Key stringId - The access key id to access the DynamoDB. Airbyte requires Read and Write permissions to the DynamoDB.
- Dynamodb
Table stringName Prefix - The prefix to use when naming DynamoDB tables.
- Secret
Access stringKey - The corresponding secret to the access key id.
- Dynamodb
Endpoint string - This is your DynamoDB endpoint url.(if you are working with AWS DynamoDB, just leave empty). Default: ""
- Dynamodb
Region 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 stringId - The access key id to access the DynamoDB. Airbyte requires Read and Write permissions to the DynamoDB.
- Dynamodb
Table stringName Prefix - The prefix to use when naming DynamoDB tables.
- Secret
Access stringKey - The corresponding secret to the access key id.
- Dynamodb
Endpoint string - This is your DynamoDB endpoint url.(if you are working with AWS DynamoDB, just leave empty). Default: ""
- Dynamodb
Region 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 StringId - The access key id to access the DynamoDB. Airbyte requires Read and Write permissions to the DynamoDB.
- dynamodb
Table StringName Prefix - The prefix to use when naming DynamoDB tables.
- secret
Access StringKey - The corresponding secret to the access key id.
- dynamodb
Endpoint String - This is your DynamoDB endpoint url.(if you are working with AWS DynamoDB, just leave empty). Default: ""
- dynamodb
Region 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 stringId - The access key id to access the DynamoDB. Airbyte requires Read and Write permissions to the DynamoDB.
- dynamodb
Table stringName Prefix - The prefix to use when naming DynamoDB tables.
- secret
Access stringKey - The corresponding secret to the access key id.
- dynamodb
Endpoint string - This is your DynamoDB endpoint url.(if you are working with AWS DynamoDB, just leave empty). Default: ""
- dynamodb
Region 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_ strid - The access key id to access the DynamoDB. Airbyte requires Read and Write permissions to the DynamoDB.
- dynamodb_
table_ strname_ prefix - The prefix to use when naming DynamoDB tables.
- secret_
access_ strkey - 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"]
- access
Key StringId - The access key id to access the DynamoDB. Airbyte requires Read and Write permissions to the DynamoDB.
- dynamodb
Table StringName Prefix - The prefix to use when naming DynamoDB tables.
- secret
Access StringKey - The corresponding secret to the access key id.
- dynamodb
Endpoint String - This is your DynamoDB endpoint url.(if you are working with AWS DynamoDB, just leave empty). Default: ""
- dynamodb
Region 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
Destination
Dynamodb Resource Allocation Default - optional resource requirements to run workers (blank for unbounded allocations)
- Job
Specifics List<DestinationDynamodb Resource Allocation Job Specific>
- Default
Destination
Dynamodb Resource Allocation Default - optional resource requirements to run workers (blank for unbounded allocations)
- Job
Specifics []DestinationDynamodb Resource Allocation Job Specific
- default_
Destination
Dynamodb Resource Allocation Default - optional resource requirements to run workers (blank for unbounded allocations)
- job
Specifics List<DestinationDynamodb Resource Allocation Job Specific>
- default
Destination
Dynamodb Resource Allocation Default - optional resource requirements to run workers (blank for unbounded allocations)
- job
Specifics DestinationDynamodb Resource Allocation Job Specific[]
- default
Destination
Dynamodb Resource Allocation Default - optional resource requirements to run workers (blank for unbounded allocations)
- job_
specifics Sequence[DestinationDynamodb Resource Allocation Job Specific]
- default Property Map
- optional resource requirements to run workers (blank for unbounded allocations)
- job
Specifics List<Property Map>
DestinationDynamodbResourceAllocationDefault, DestinationDynamodbResourceAllocationDefaultArgs
- Cpu
Limit string - Cpu
Request string - Ephemeral
Storage stringLimit - Ephemeral
Storage stringRequest - Memory
Limit string - Memory
Request string
- Cpu
Limit string - Cpu
Request string - Ephemeral
Storage stringLimit - Ephemeral
Storage stringRequest - Memory
Limit string - Memory
Request string
- cpu
Limit String - cpu
Request String - ephemeral
Storage StringLimit - ephemeral
Storage StringRequest - memory
Limit String - memory
Request String
- cpu
Limit string - cpu
Request string - ephemeral
Storage stringLimit - ephemeral
Storage stringRequest - memory
Limit string - memory
Request string
- cpu_
limit str - cpu_
request str - ephemeral_
storage_ strlimit - ephemeral_
storage_ strrequest - memory_
limit str - memory_
request str
- cpu
Limit String - cpu
Request String - ephemeral
Storage StringLimit - ephemeral
Storage StringRequest - memory
Limit String - memory
Request String
DestinationDynamodbResourceAllocationJobSpecific, DestinationDynamodbResourceAllocationJobSpecificArgs
- Job
Type string - enum that describes the different types of jobs that the platform runs. must be one of ["getspec", "checkconnection", "discoverschema", "sync", "resetconnection", "connection_updater", "replicate"]
- Resource
Requirements DestinationDynamodb Resource Allocation Job Specific Resource Requirements - optional resource requirements to run workers (blank for unbounded allocations)
- Job
Type string - enum that describes the different types of jobs that the platform runs. must be one of ["getspec", "checkconnection", "discoverschema", "sync", "resetconnection", "connection_updater", "replicate"]
- Resource
Requirements DestinationDynamodb Resource Allocation Job Specific Resource Requirements - optional resource requirements to run workers (blank for unbounded allocations)
- job
Type String - enum that describes the different types of jobs that the platform runs. must be one of ["getspec", "checkconnection", "discoverschema", "sync", "resetconnection", "connection_updater", "replicate"]
- resource
Requirements DestinationDynamodb Resource Allocation Job Specific Resource Requirements - optional resource requirements to run workers (blank for unbounded allocations)
- job
Type string - enum that describes the different types of jobs that the platform runs. must be one of ["getspec", "checkconnection", "discoverschema", "sync", "resetconnection", "connection_updater", "replicate"]
- resource
Requirements DestinationDynamodb Resource Allocation Job Specific Resource Requirements - 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. must be one of ["getspec", "checkconnection", "discoverschema", "sync", "resetconnection", "connection_updater", "replicate"]
- resource_
requirements DestinationDynamodb Resource Allocation Job Specific Resource Requirements - optional resource requirements to run workers (blank for unbounded allocations)
- job
Type String - enum that describes the different types of jobs that the platform runs. must be one of ["getspec", "checkconnection", "discoverschema", "sync", "resetconnection", "connection_updater", "replicate"]
- resource
Requirements Property Map - optional resource requirements to run workers (blank for unbounded allocations)
DestinationDynamodbResourceAllocationJobSpecificResourceRequirements, DestinationDynamodbResourceAllocationJobSpecificResourceRequirementsArgs
- Cpu
Limit string - Cpu
Request string - Ephemeral
Storage stringLimit - Ephemeral
Storage stringRequest - Memory
Limit string - Memory
Request string
- Cpu
Limit string - Cpu
Request string - Ephemeral
Storage stringLimit - Ephemeral
Storage stringRequest - Memory
Limit string - Memory
Request string
- cpu
Limit String - cpu
Request String - ephemeral
Storage StringLimit - ephemeral
Storage StringRequest - memory
Limit String - memory
Request String
- cpu
Limit string - cpu
Request string - ephemeral
Storage stringLimit - ephemeral
Storage stringRequest - memory
Limit string - memory
Request string
- cpu_
limit str - cpu_
request str - ephemeral_
storage_ strlimit - ephemeral_
storage_ strrequest - memory_
limit str - memory_
request str
- cpu
Limit String - cpu
Request String - ephemeral
Storage StringLimit - ephemeral
Storage StringRequest - memory
Limit String - memory
Request String
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.