airbyte.DestinationS3
Explore with Pulumi AI
DestinationS3 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.DestinationS3;
import com.pulumi.airbyte.DestinationS3Args;
import com.pulumi.airbyte.inputs.DestinationS3ConfigurationArgs;
import com.pulumi.airbyte.inputs.DestinationS3ConfigurationFormatArgs;
import com.pulumi.airbyte.inputs.DestinationS3ConfigurationFormatAvroApacheAvroArgs;
import com.pulumi.airbyte.inputs.DestinationS3ConfigurationFormatAvroApacheAvroCompressionCodecArgs;
import com.pulumi.airbyte.inputs.DestinationS3ConfigurationFormatAvroApacheAvroCompressionCodecBzip2Args;
import com.pulumi.airbyte.inputs.DestinationS3ConfigurationFormatAvroApacheAvroCompressionCodecDeflateArgs;
import com.pulumi.airbyte.inputs.DestinationS3ConfigurationFormatAvroApacheAvroCompressionCodecNoCompressionArgs;
import com.pulumi.airbyte.inputs.DestinationS3ConfigurationFormatAvroApacheAvroCompressionCodecSnappyArgs;
import com.pulumi.airbyte.inputs.DestinationS3ConfigurationFormatAvroApacheAvroCompressionCodecXzArgs;
import com.pulumi.airbyte.inputs.DestinationS3ConfigurationFormatAvroApacheAvroCompressionCodecZstandardArgs;
import com.pulumi.airbyte.inputs.DestinationS3ConfigurationFormatCsvCommaSeparatedValuesArgs;
import com.pulumi.airbyte.inputs.DestinationS3ConfigurationFormatCsvCommaSeparatedValuesCompressionArgs;
import com.pulumi.airbyte.inputs.DestinationS3ConfigurationFormatCsvCommaSeparatedValuesCompressionGzipArgs;
import com.pulumi.airbyte.inputs.DestinationS3ConfigurationFormatCsvCommaSeparatedValuesCompressionNoCompressionArgs;
import com.pulumi.airbyte.inputs.DestinationS3ConfigurationFormatJsonLinesNewlineDelimitedJsonArgs;
import com.pulumi.airbyte.inputs.DestinationS3ConfigurationFormatJsonLinesNewlineDelimitedJsonCompressionArgs;
import com.pulumi.airbyte.inputs.DestinationS3ConfigurationFormatJsonLinesNewlineDelimitedJsonCompressionGzipArgs;
import com.pulumi.airbyte.inputs.DestinationS3ConfigurationFormatJsonLinesNewlineDelimitedJsonCompressionNoCompressionArgs;
import com.pulumi.airbyte.inputs.DestinationS3ConfigurationFormatParquetColumnarStorageArgs;
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 myDestinationS3 = new DestinationS3("myDestinationS3", DestinationS3Args.builder()
.configuration(DestinationS3ConfigurationArgs.builder()
.access_key_id("A012345678910EXAMPLE")
.file_name_pattern("{date}")
.format(DestinationS3ConfigurationFormatArgs.builder()
.avroApacheAvro(DestinationS3ConfigurationFormatAvroApacheAvroArgs.builder()
.additionalProperties("{ \"see\": \"documentation\" }")
.compressionCodec(DestinationS3ConfigurationFormatAvroApacheAvroCompressionCodecArgs.builder()
.bzip2(DestinationS3ConfigurationFormatAvroApacheAvroCompressionCodecBzip2Args.builder()
.additionalProperties("{ \"see\": \"documentation\" }")
.codec("bzip2")
.build())
.deflate(DestinationS3ConfigurationFormatAvroApacheAvroCompressionCodecDeflateArgs.builder()
.additionalProperties("{ \"see\": \"documentation\" }")
.codec("Deflate")
.compressionLevel(3)
.build())
.noCompression(DestinationS3ConfigurationFormatAvroApacheAvroCompressionCodecNoCompressionArgs.builder()
.additionalProperties("{ \"see\": \"documentation\" }")
.codec("no compression")
.build())
.snappy(DestinationS3ConfigurationFormatAvroApacheAvroCompressionCodecSnappyArgs.builder()
.additionalProperties("{ \"see\": \"documentation\" }")
.codec("snappy")
.build())
.xz(DestinationS3ConfigurationFormatAvroApacheAvroCompressionCodecXzArgs.builder()
.additionalProperties("{ \"see\": \"documentation\" }")
.codec("xz")
.compressionLevel(3)
.build())
.zstandard(DestinationS3ConfigurationFormatAvroApacheAvroCompressionCodecZstandardArgs.builder()
.additionalProperties("{ \"see\": \"documentation\" }")
.codec("zstandard")
.compressionLevel(0)
.includeChecksum(false)
.build())
.build())
.formatType("Avro")
.build())
.csvCommaSeparatedValues(DestinationS3ConfigurationFormatCsvCommaSeparatedValuesArgs.builder()
.additionalProperties("{ \"see\": \"documentation\" }")
.compression(DestinationS3ConfigurationFormatCsvCommaSeparatedValuesCompressionArgs.builder()
.gzip(DestinationS3ConfigurationFormatCsvCommaSeparatedValuesCompressionGzipArgs.builder()
.additionalProperties("{ \"see\": \"documentation\" }")
.compressionType("GZIP")
.build())
.noCompression(DestinationS3ConfigurationFormatCsvCommaSeparatedValuesCompressionNoCompressionArgs.builder()
.additionalProperties("{ \"see\": \"documentation\" }")
.compressionType("No Compression")
.build())
.build())
.flattening("No flattening")
.formatType("CSV")
.build())
.jsonLinesNewlineDelimitedJson(DestinationS3ConfigurationFormatJsonLinesNewlineDelimitedJsonArgs.builder()
.additionalProperties("{ \"see\": \"documentation\" }")
.compression(DestinationS3ConfigurationFormatJsonLinesNewlineDelimitedJsonCompressionArgs.builder()
.gzip(DestinationS3ConfigurationFormatJsonLinesNewlineDelimitedJsonCompressionGzipArgs.builder()
.additionalProperties("{ \"see\": \"documentation\" }")
.compressionType("GZIP")
.build())
.noCompression(DestinationS3ConfigurationFormatJsonLinesNewlineDelimitedJsonCompressionNoCompressionArgs.builder()
.additionalProperties("{ \"see\": \"documentation\" }")
.compressionType("No Compression")
.build())
.build())
.flattening("No flattening")
.formatType("JSONL")
.build())
.parquetColumnarStorage(DestinationS3ConfigurationFormatParquetColumnarStorageArgs.builder()
.additionalProperties("{ \"see\": \"documentation\" }")
.blockSizeMb(4)
.compressionCodec("SNAPPY")
.dictionaryEncoding(true)
.dictionaryPageSizeKb(4)
.formatType("Parquet")
.maxPaddingSizeMb(3)
.pageSizeKb(9)
.build())
.build())
.role_arn("arn:aws:iam::123456789:role/ExternalIdIsYourWorkspaceId")
.s3_bucket_name("airbyte_sync")
.s3_bucket_path("data_sync/test")
.s3_bucket_region("us-east-1")
.s3_endpoint("http://localhost:9000")
.s3_path_format(String.format("%s/%s/%s_%s_%s_%s_", NAMESPACE,STREAM_NAME,YEAR,MONTH,DAY,EPOCH))
.secret_access_key("a012345678910ABCDEFGH/AbCdEfGhEXAMPLEKEY")
.build())
.definitionId("78e0a8ec-be25-40bf-b8ba-093bfe7a6f05")
.workspaceId("9842b6c1-e43f-4d6f-90dd-f293538933f0")
.build());
}
}
resources:
myDestinationS3:
type: airbyte:DestinationS3
properties:
configuration:
access_key_id: A012345678910EXAMPLE
file_name_pattern: '{date}'
format:
avroApacheAvro:
additionalProperties: '{ "see": "documentation" }'
compressionCodec:
bzip2:
additionalProperties: '{ "see": "documentation" }'
codec: bzip2
deflate:
additionalProperties: '{ "see": "documentation" }'
codec: Deflate
compressionLevel: 3
noCompression:
additionalProperties: '{ "see": "documentation" }'
codec: no compression
snappy:
additionalProperties: '{ "see": "documentation" }'
codec: snappy
xz:
additionalProperties: '{ "see": "documentation" }'
codec: xz
compressionLevel: 3
zstandard:
additionalProperties: '{ "see": "documentation" }'
codec: zstandard
compressionLevel: 0
includeChecksum: false
formatType: Avro
csvCommaSeparatedValues:
additionalProperties: '{ "see": "documentation" }'
compression:
gzip:
additionalProperties: '{ "see": "documentation" }'
compressionType: GZIP
noCompression:
additionalProperties: '{ "see": "documentation" }'
compressionType: No Compression
flattening: No flattening
formatType: CSV
jsonLinesNewlineDelimitedJson:
additionalProperties: '{ "see": "documentation" }'
compression:
gzip:
additionalProperties: '{ "see": "documentation" }'
compressionType: GZIP
noCompression:
additionalProperties: '{ "see": "documentation" }'
compressionType: No Compression
flattening: No flattening
formatType: JSONL
parquetColumnarStorage:
additionalProperties: '{ "see": "documentation" }'
blockSizeMb: 4
compressionCodec: SNAPPY
dictionaryEncoding: true
dictionaryPageSizeKb: 4
formatType: Parquet
maxPaddingSizeMb: 3
pageSizeKb: 9
role_arn: arn:aws:iam::123456789:role/ExternalIdIsYourWorkspaceId
s3_bucket_name: airbyte_sync
s3_bucket_path: data_sync/test
s3_bucket_region: us-east-1
s3_endpoint: http://localhost:9000
s3_path_format: ${NAMESPACE}/${STREAM_NAME}/${YEAR}_${MONTH}_${DAY}_${EPOCH}_
secret_access_key: a012345678910ABCDEFGH/AbCdEfGhEXAMPLEKEY
definitionId: 78e0a8ec-be25-40bf-b8ba-093bfe7a6f05
workspaceId: 9842b6c1-e43f-4d6f-90dd-f293538933f0
Create DestinationS3 Resource
Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.
Constructor syntax
new DestinationS3(name: string, args: DestinationS3Args, opts?: CustomResourceOptions);
@overload
def DestinationS3(resource_name: str,
args: DestinationS3Args,
opts: Optional[ResourceOptions] = None)
@overload
def DestinationS3(resource_name: str,
opts: Optional[ResourceOptions] = None,
configuration: Optional[DestinationS3ConfigurationArgs] = None,
workspace_id: Optional[str] = None,
definition_id: Optional[str] = None,
name: Optional[str] = None)
func NewDestinationS3(ctx *Context, name string, args DestinationS3Args, opts ...ResourceOption) (*DestinationS3, error)
public DestinationS3(string name, DestinationS3Args args, CustomResourceOptions? opts = null)
public DestinationS3(String name, DestinationS3Args args)
public DestinationS3(String name, DestinationS3Args args, CustomResourceOptions options)
type: airbyte:DestinationS3
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 DestinationS3Args
- 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 DestinationS3Args
- 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 DestinationS3Args
- The arguments to resource properties.
- opts ResourceOption
- Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args DestinationS3Args
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- name String
- The unique name of the resource.
- args DestinationS3Args
- 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 destinationS3Resource = new Airbyte.DestinationS3("destinationS3Resource", new()
{
Configuration = new Airbyte.Inputs.DestinationS3ConfigurationArgs
{
Format = new Airbyte.Inputs.DestinationS3ConfigurationFormatArgs
{
AvroApacheAvro = new Airbyte.Inputs.DestinationS3ConfigurationFormatAvroApacheAvroArgs
{
CompressionCodec = new Airbyte.Inputs.DestinationS3ConfigurationFormatAvroApacheAvroCompressionCodecArgs
{
Bzip2 = new Airbyte.Inputs.DestinationS3ConfigurationFormatAvroApacheAvroCompressionCodecBzip2Args
{
AdditionalProperties = "string",
Codec = "string",
},
Deflate = new Airbyte.Inputs.DestinationS3ConfigurationFormatAvroApacheAvroCompressionCodecDeflateArgs
{
CompressionLevel = 0,
AdditionalProperties = "string",
Codec = "string",
},
NoCompression = new Airbyte.Inputs.DestinationS3ConfigurationFormatAvroApacheAvroCompressionCodecNoCompressionArgs
{
AdditionalProperties = "string",
Codec = "string",
},
Snappy = new Airbyte.Inputs.DestinationS3ConfigurationFormatAvroApacheAvroCompressionCodecSnappyArgs
{
AdditionalProperties = "string",
Codec = "string",
},
Xz = new Airbyte.Inputs.DestinationS3ConfigurationFormatAvroApacheAvroCompressionCodecXzArgs
{
CompressionLevel = 0,
AdditionalProperties = "string",
Codec = "string",
},
Zstandard = new Airbyte.Inputs.DestinationS3ConfigurationFormatAvroApacheAvroCompressionCodecZstandardArgs
{
CompressionLevel = 0,
IncludeChecksum = false,
AdditionalProperties = "string",
Codec = "string",
},
},
AdditionalProperties = "string",
FormatType = "string",
},
CsvCommaSeparatedValues = new Airbyte.Inputs.DestinationS3ConfigurationFormatCsvCommaSeparatedValuesArgs
{
AdditionalProperties = "string",
Compression = new Airbyte.Inputs.DestinationS3ConfigurationFormatCsvCommaSeparatedValuesCompressionArgs
{
Gzip = new Airbyte.Inputs.DestinationS3ConfigurationFormatCsvCommaSeparatedValuesCompressionGzipArgs
{
AdditionalProperties = "string",
CompressionType = "string",
},
NoCompression = new Airbyte.Inputs.DestinationS3ConfigurationFormatCsvCommaSeparatedValuesCompressionNoCompressionArgs
{
AdditionalProperties = "string",
CompressionType = "string",
},
},
Flattening = "string",
FormatType = "string",
},
JsonLinesNewlineDelimitedJson = new Airbyte.Inputs.DestinationS3ConfigurationFormatJsonLinesNewlineDelimitedJsonArgs
{
AdditionalProperties = "string",
Compression = new Airbyte.Inputs.DestinationS3ConfigurationFormatJsonLinesNewlineDelimitedJsonCompressionArgs
{
Gzip = new Airbyte.Inputs.DestinationS3ConfigurationFormatJsonLinesNewlineDelimitedJsonCompressionGzipArgs
{
AdditionalProperties = "string",
CompressionType = "string",
},
NoCompression = new Airbyte.Inputs.DestinationS3ConfigurationFormatJsonLinesNewlineDelimitedJsonCompressionNoCompressionArgs
{
AdditionalProperties = "string",
CompressionType = "string",
},
},
Flattening = "string",
FormatType = "string",
},
ParquetColumnarStorage = new Airbyte.Inputs.DestinationS3ConfigurationFormatParquetColumnarStorageArgs
{
AdditionalProperties = "string",
BlockSizeMb = 0,
CompressionCodec = "string",
DictionaryEncoding = false,
DictionaryPageSizeKb = 0,
FormatType = "string",
MaxPaddingSizeMb = 0,
PageSizeKb = 0,
},
},
S3BucketName = "string",
S3BucketPath = "string",
AccessKeyId = "string",
FileNamePattern = "string",
RoleArn = "string",
S3BucketRegion = "string",
S3Endpoint = "string",
S3PathFormat = "string",
SecretAccessKey = "string",
},
WorkspaceId = "string",
DefinitionId = "string",
Name = "string",
});
example, err := airbyte.NewDestinationS3(ctx, "destinationS3Resource", &airbyte.DestinationS3Args{
Configuration: &.DestinationS3ConfigurationArgs{
Format: &.DestinationS3ConfigurationFormatArgs{
AvroApacheAvro: &.DestinationS3ConfigurationFormatAvroApacheAvroArgs{
CompressionCodec: &.DestinationS3ConfigurationFormatAvroApacheAvroCompressionCodecArgs{
Bzip2: &.DestinationS3ConfigurationFormatAvroApacheAvroCompressionCodecBzip2Args{
AdditionalProperties: pulumi.String("string"),
Codec: pulumi.String("string"),
},
Deflate: &.DestinationS3ConfigurationFormatAvroApacheAvroCompressionCodecDeflateArgs{
CompressionLevel: pulumi.Float64(0),
AdditionalProperties: pulumi.String("string"),
Codec: pulumi.String("string"),
},
NoCompression: &.DestinationS3ConfigurationFormatAvroApacheAvroCompressionCodecNoCompressionArgs{
AdditionalProperties: pulumi.String("string"),
Codec: pulumi.String("string"),
},
Snappy: &.DestinationS3ConfigurationFormatAvroApacheAvroCompressionCodecSnappyArgs{
AdditionalProperties: pulumi.String("string"),
Codec: pulumi.String("string"),
},
Xz: &.DestinationS3ConfigurationFormatAvroApacheAvroCompressionCodecXzArgs{
CompressionLevel: pulumi.Float64(0),
AdditionalProperties: pulumi.String("string"),
Codec: pulumi.String("string"),
},
Zstandard: &.DestinationS3ConfigurationFormatAvroApacheAvroCompressionCodecZstandardArgs{
CompressionLevel: pulumi.Float64(0),
IncludeChecksum: pulumi.Bool(false),
AdditionalProperties: pulumi.String("string"),
Codec: pulumi.String("string"),
},
},
AdditionalProperties: pulumi.String("string"),
FormatType: pulumi.String("string"),
},
CsvCommaSeparatedValues: &.DestinationS3ConfigurationFormatCsvCommaSeparatedValuesArgs{
AdditionalProperties: pulumi.String("string"),
Compression: &.DestinationS3ConfigurationFormatCsvCommaSeparatedValuesCompressionArgs{
Gzip: &.DestinationS3ConfigurationFormatCsvCommaSeparatedValuesCompressionGzipArgs{
AdditionalProperties: pulumi.String("string"),
CompressionType: pulumi.String("string"),
},
NoCompression: &.DestinationS3ConfigurationFormatCsvCommaSeparatedValuesCompressionNoCompressionArgs{
AdditionalProperties: pulumi.String("string"),
CompressionType: pulumi.String("string"),
},
},
Flattening: pulumi.String("string"),
FormatType: pulumi.String("string"),
},
JsonLinesNewlineDelimitedJson: &.DestinationS3ConfigurationFormatJsonLinesNewlineDelimitedJsonArgs{
AdditionalProperties: pulumi.String("string"),
Compression: &.DestinationS3ConfigurationFormatJsonLinesNewlineDelimitedJsonCompressionArgs{
Gzip: &.DestinationS3ConfigurationFormatJsonLinesNewlineDelimitedJsonCompressionGzipArgs{
AdditionalProperties: pulumi.String("string"),
CompressionType: pulumi.String("string"),
},
NoCompression: &.DestinationS3ConfigurationFormatJsonLinesNewlineDelimitedJsonCompressionNoCompressionArgs{
AdditionalProperties: pulumi.String("string"),
CompressionType: pulumi.String("string"),
},
},
Flattening: pulumi.String("string"),
FormatType: pulumi.String("string"),
},
ParquetColumnarStorage: &.DestinationS3ConfigurationFormatParquetColumnarStorageArgs{
AdditionalProperties: pulumi.String("string"),
BlockSizeMb: pulumi.Float64(0),
CompressionCodec: pulumi.String("string"),
DictionaryEncoding: pulumi.Bool(false),
DictionaryPageSizeKb: pulumi.Float64(0),
FormatType: pulumi.String("string"),
MaxPaddingSizeMb: pulumi.Float64(0),
PageSizeKb: pulumi.Float64(0),
},
},
S3BucketName: pulumi.String("string"),
S3BucketPath: pulumi.String("string"),
AccessKeyId: pulumi.String("string"),
FileNamePattern: pulumi.String("string"),
RoleArn: pulumi.String("string"),
S3BucketRegion: pulumi.String("string"),
S3Endpoint: pulumi.String("string"),
S3PathFormat: pulumi.String("string"),
SecretAccessKey: pulumi.String("string"),
},
WorkspaceId: pulumi.String("string"),
DefinitionId: pulumi.String("string"),
Name: pulumi.String("string"),
})
var destinationS3Resource = new DestinationS3("destinationS3Resource", DestinationS3Args.builder()
.configuration(DestinationS3ConfigurationArgs.builder()
.format(DestinationS3ConfigurationFormatArgs.builder()
.avroApacheAvro(DestinationS3ConfigurationFormatAvroApacheAvroArgs.builder()
.compressionCodec(DestinationS3ConfigurationFormatAvroApacheAvroCompressionCodecArgs.builder()
.bzip2(DestinationS3ConfigurationFormatAvroApacheAvroCompressionCodecBzip2Args.builder()
.additionalProperties("string")
.codec("string")
.build())
.deflate(DestinationS3ConfigurationFormatAvroApacheAvroCompressionCodecDeflateArgs.builder()
.compressionLevel(0)
.additionalProperties("string")
.codec("string")
.build())
.noCompression(DestinationS3ConfigurationFormatAvroApacheAvroCompressionCodecNoCompressionArgs.builder()
.additionalProperties("string")
.codec("string")
.build())
.snappy(DestinationS3ConfigurationFormatAvroApacheAvroCompressionCodecSnappyArgs.builder()
.additionalProperties("string")
.codec("string")
.build())
.xz(DestinationS3ConfigurationFormatAvroApacheAvroCompressionCodecXzArgs.builder()
.compressionLevel(0)
.additionalProperties("string")
.codec("string")
.build())
.zstandard(DestinationS3ConfigurationFormatAvroApacheAvroCompressionCodecZstandardArgs.builder()
.compressionLevel(0)
.includeChecksum(false)
.additionalProperties("string")
.codec("string")
.build())
.build())
.additionalProperties("string")
.formatType("string")
.build())
.csvCommaSeparatedValues(DestinationS3ConfigurationFormatCsvCommaSeparatedValuesArgs.builder()
.additionalProperties("string")
.compression(DestinationS3ConfigurationFormatCsvCommaSeparatedValuesCompressionArgs.builder()
.gzip(DestinationS3ConfigurationFormatCsvCommaSeparatedValuesCompressionGzipArgs.builder()
.additionalProperties("string")
.compressionType("string")
.build())
.noCompression(DestinationS3ConfigurationFormatCsvCommaSeparatedValuesCompressionNoCompressionArgs.builder()
.additionalProperties("string")
.compressionType("string")
.build())
.build())
.flattening("string")
.formatType("string")
.build())
.jsonLinesNewlineDelimitedJson(DestinationS3ConfigurationFormatJsonLinesNewlineDelimitedJsonArgs.builder()
.additionalProperties("string")
.compression(DestinationS3ConfigurationFormatJsonLinesNewlineDelimitedJsonCompressionArgs.builder()
.gzip(DestinationS3ConfigurationFormatJsonLinesNewlineDelimitedJsonCompressionGzipArgs.builder()
.additionalProperties("string")
.compressionType("string")
.build())
.noCompression(DestinationS3ConfigurationFormatJsonLinesNewlineDelimitedJsonCompressionNoCompressionArgs.builder()
.additionalProperties("string")
.compressionType("string")
.build())
.build())
.flattening("string")
.formatType("string")
.build())
.parquetColumnarStorage(DestinationS3ConfigurationFormatParquetColumnarStorageArgs.builder()
.additionalProperties("string")
.blockSizeMb(0)
.compressionCodec("string")
.dictionaryEncoding(false)
.dictionaryPageSizeKb(0)
.formatType("string")
.maxPaddingSizeMb(0)
.pageSizeKb(0)
.build())
.build())
.s3BucketName("string")
.s3BucketPath("string")
.accessKeyId("string")
.fileNamePattern("string")
.roleArn("string")
.s3BucketRegion("string")
.s3Endpoint("string")
.s3PathFormat("string")
.secretAccessKey("string")
.build())
.workspaceId("string")
.definitionId("string")
.name("string")
.build());
destination_s3_resource = airbyte.DestinationS3("destinationS3Resource",
configuration={
"format": {
"avro_apache_avro": {
"compression_codec": {
"bzip2": {
"additional_properties": "string",
"codec": "string",
},
"deflate": {
"compression_level": 0,
"additional_properties": "string",
"codec": "string",
},
"no_compression": {
"additional_properties": "string",
"codec": "string",
},
"snappy": {
"additional_properties": "string",
"codec": "string",
},
"xz": {
"compression_level": 0,
"additional_properties": "string",
"codec": "string",
},
"zstandard": {
"compression_level": 0,
"include_checksum": False,
"additional_properties": "string",
"codec": "string",
},
},
"additional_properties": "string",
"format_type": "string",
},
"csv_comma_separated_values": {
"additional_properties": "string",
"compression": {
"gzip": {
"additional_properties": "string",
"compression_type": "string",
},
"no_compression": {
"additional_properties": "string",
"compression_type": "string",
},
},
"flattening": "string",
"format_type": "string",
},
"json_lines_newline_delimited_json": {
"additional_properties": "string",
"compression": {
"gzip": {
"additional_properties": "string",
"compression_type": "string",
},
"no_compression": {
"additional_properties": "string",
"compression_type": "string",
},
},
"flattening": "string",
"format_type": "string",
},
"parquet_columnar_storage": {
"additional_properties": "string",
"block_size_mb": 0,
"compression_codec": "string",
"dictionary_encoding": False,
"dictionary_page_size_kb": 0,
"format_type": "string",
"max_padding_size_mb": 0,
"page_size_kb": 0,
},
},
"s3_bucket_name": "string",
"s3_bucket_path": "string",
"access_key_id": "string",
"file_name_pattern": "string",
"role_arn": "string",
"s3_bucket_region": "string",
"s3_endpoint": "string",
"s3_path_format": "string",
"secret_access_key": "string",
},
workspace_id="string",
definition_id="string",
name="string")
const destinationS3Resource = new airbyte.DestinationS3("destinationS3Resource", {
configuration: {
format: {
avroApacheAvro: {
compressionCodec: {
bzip2: {
additionalProperties: "string",
codec: "string",
},
deflate: {
compressionLevel: 0,
additionalProperties: "string",
codec: "string",
},
noCompression: {
additionalProperties: "string",
codec: "string",
},
snappy: {
additionalProperties: "string",
codec: "string",
},
xz: {
compressionLevel: 0,
additionalProperties: "string",
codec: "string",
},
zstandard: {
compressionLevel: 0,
includeChecksum: false,
additionalProperties: "string",
codec: "string",
},
},
additionalProperties: "string",
formatType: "string",
},
csvCommaSeparatedValues: {
additionalProperties: "string",
compression: {
gzip: {
additionalProperties: "string",
compressionType: "string",
},
noCompression: {
additionalProperties: "string",
compressionType: "string",
},
},
flattening: "string",
formatType: "string",
},
jsonLinesNewlineDelimitedJson: {
additionalProperties: "string",
compression: {
gzip: {
additionalProperties: "string",
compressionType: "string",
},
noCompression: {
additionalProperties: "string",
compressionType: "string",
},
},
flattening: "string",
formatType: "string",
},
parquetColumnarStorage: {
additionalProperties: "string",
blockSizeMb: 0,
compressionCodec: "string",
dictionaryEncoding: false,
dictionaryPageSizeKb: 0,
formatType: "string",
maxPaddingSizeMb: 0,
pageSizeKb: 0,
},
},
s3BucketName: "string",
s3BucketPath: "string",
accessKeyId: "string",
fileNamePattern: "string",
roleArn: "string",
s3BucketRegion: "string",
s3Endpoint: "string",
s3PathFormat: "string",
secretAccessKey: "string",
},
workspaceId: "string",
definitionId: "string",
name: "string",
});
type: airbyte:DestinationS3
properties:
configuration:
accessKeyId: string
fileNamePattern: string
format:
avroApacheAvro:
additionalProperties: string
compressionCodec:
bzip2:
additionalProperties: string
codec: string
deflate:
additionalProperties: string
codec: string
compressionLevel: 0
noCompression:
additionalProperties: string
codec: string
snappy:
additionalProperties: string
codec: string
xz:
additionalProperties: string
codec: string
compressionLevel: 0
zstandard:
additionalProperties: string
codec: string
compressionLevel: 0
includeChecksum: false
formatType: string
csvCommaSeparatedValues:
additionalProperties: string
compression:
gzip:
additionalProperties: string
compressionType: string
noCompression:
additionalProperties: string
compressionType: string
flattening: string
formatType: string
jsonLinesNewlineDelimitedJson:
additionalProperties: string
compression:
gzip:
additionalProperties: string
compressionType: string
noCompression:
additionalProperties: string
compressionType: string
flattening: string
formatType: string
parquetColumnarStorage:
additionalProperties: string
blockSizeMb: 0
compressionCodec: string
dictionaryEncoding: false
dictionaryPageSizeKb: 0
formatType: string
maxPaddingSizeMb: 0
pageSizeKb: 0
roleArn: string
s3BucketName: string
s3BucketPath: string
s3BucketRegion: string
s3Endpoint: string
s3PathFormat: string
secretAccessKey: string
definitionId: string
name: string
workspaceId: string
DestinationS3 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 DestinationS3 resource accepts the following input properties:
- Configuration
Destination
S3Configuration - 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
S3Configuration 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
S3Configuration - 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
S3Configuration - 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
S3Configuration 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 DestinationS3 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.
- Created
At float64 - Destination
Id string - Destination
Type string - Id string
- The provider-assigned unique ID for this managed resource.
- created
At Double - destination
Id String - destination
Type String - id String
- The provider-assigned unique ID for this managed resource.
- created
At number - destination
Id string - destination
Type 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.
- created
At Number - destination
Id String - destination
Type String - id String
- The provider-assigned unique ID for this managed resource.
Look up Existing DestinationS3 Resource
Get an existing DestinationS3 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?: DestinationS3State, opts?: CustomResourceOptions): DestinationS3
@staticmethod
def get(resource_name: str,
id: str,
opts: Optional[ResourceOptions] = None,
configuration: Optional[DestinationS3ConfigurationArgs] = 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) -> DestinationS3
func GetDestinationS3(ctx *Context, name string, id IDInput, state *DestinationS3State, opts ...ResourceOption) (*DestinationS3, error)
public static DestinationS3 Get(string name, Input<string> id, DestinationS3State? state, CustomResourceOptions? opts = null)
public static DestinationS3 get(String name, Output<String> id, DestinationS3State state, CustomResourceOptions options)
resources: _: type: airbyte:DestinationS3 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
S3Configuration - 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.
- Workspace
Id string
- Configuration
Destination
S3Configuration 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.
- Workspace
Id string
- configuration
Destination
S3Configuration - 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.
- workspace
Id String
- configuration
Destination
S3Configuration - 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.
- workspace
Id string
- configuration
Destination
S3Configuration 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.
- 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.
- workspace
Id String
Supporting Types
DestinationS3Configuration, DestinationS3ConfigurationArgs
- Format
Destination
S3Configuration Format - Format of the data output. See \n\nhere\n\n for more details
- S3Bucket
Name string - The name of the S3 bucket. Read more \n\nhere\n\n.
- S3Bucket
Path string - Directory under the S3 bucket where data will be written. Read more \n\nhere\n\n
- Access
Key stringId - The access key ID to access the S3 bucket. Airbyte requires Read and Write permissions to the given bucket. Read more \n\nhere\n\n.
- File
Name stringPattern - Pattern to match file names in the bucket directory. Read more \n\nhere\n\n
- Role
Arn string - The ARN of the AWS role to assume. Only usable in Airbyte Cloud.
- S3Bucket
Region string - The region of the S3 bucket. See \n\nhere\n\n for all region codes. 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"]
- S3Endpoint string
- Your S3 endpoint url. Read more \n\nhere\n\n
- S3Path
Format string - Format string on how data will be organized inside the bucket directory. Read more \n\nhere\n\n
- Secret
Access stringKey - The corresponding secret to the access key ID. Read more \n\nhere\n\n
- Format
Destination
S3Configuration Format - Format of the data output. See \n\nhere\n\n for more details
- S3Bucket
Name string - The name of the S3 bucket. Read more \n\nhere\n\n.
- S3Bucket
Path string - Directory under the S3 bucket where data will be written. Read more \n\nhere\n\n
- Access
Key stringId - The access key ID to access the S3 bucket. Airbyte requires Read and Write permissions to the given bucket. Read more \n\nhere\n\n.
- File
Name stringPattern - Pattern to match file names in the bucket directory. Read more \n\nhere\n\n
- Role
Arn string - The ARN of the AWS role to assume. Only usable in Airbyte Cloud.
- S3Bucket
Region string - The region of the S3 bucket. See \n\nhere\n\n for all region codes. 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"]
- S3Endpoint string
- Your S3 endpoint url. Read more \n\nhere\n\n
- S3Path
Format string - Format string on how data will be organized inside the bucket directory. Read more \n\nhere\n\n
- Secret
Access stringKey - The corresponding secret to the access key ID. Read more \n\nhere\n\n
- format
Destination
S3Configuration Format - Format of the data output. See \n\nhere\n\n for more details
- s3Bucket
Name String - The name of the S3 bucket. Read more \n\nhere\n\n.
- s3Bucket
Path String - Directory under the S3 bucket where data will be written. Read more \n\nhere\n\n
- access
Key StringId - The access key ID to access the S3 bucket. Airbyte requires Read and Write permissions to the given bucket. Read more \n\nhere\n\n.
- file
Name StringPattern - Pattern to match file names in the bucket directory. Read more \n\nhere\n\n
- role
Arn String - The ARN of the AWS role to assume. Only usable in Airbyte Cloud.
- s3Bucket
Region String - The region of the S3 bucket. See \n\nhere\n\n for all region codes. 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"]
- s3Endpoint String
- Your S3 endpoint url. Read more \n\nhere\n\n
- s3Path
Format String - Format string on how data will be organized inside the bucket directory. Read more \n\nhere\n\n
- secret
Access StringKey - The corresponding secret to the access key ID. Read more \n\nhere\n\n
- format
Destination
S3Configuration Format - Format of the data output. See \n\nhere\n\n for more details
- s3Bucket
Name string - The name of the S3 bucket. Read more \n\nhere\n\n.
- s3Bucket
Path string - Directory under the S3 bucket where data will be written. Read more \n\nhere\n\n
- access
Key stringId - The access key ID to access the S3 bucket. Airbyte requires Read and Write permissions to the given bucket. Read more \n\nhere\n\n.
- file
Name stringPattern - Pattern to match file names in the bucket directory. Read more \n\nhere\n\n
- role
Arn string - The ARN of the AWS role to assume. Only usable in Airbyte Cloud.
- s3Bucket
Region string - The region of the S3 bucket. See \n\nhere\n\n for all region codes. 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"]
- s3Endpoint string
- Your S3 endpoint url. Read more \n\nhere\n\n
- s3Path
Format string - Format string on how data will be organized inside the bucket directory. Read more \n\nhere\n\n
- secret
Access stringKey - The corresponding secret to the access key ID. Read more \n\nhere\n\n
- format
Destination
S3Configuration Format - Format of the data output. See \n\nhere\n\n for more details
- s3_
bucket_ strname - The name of the S3 bucket. Read more \n\nhere\n\n.
- s3_
bucket_ strpath - Directory under the S3 bucket where data will be written. Read more \n\nhere\n\n
- access_
key_ strid - The access key ID to access the S3 bucket. Airbyte requires Read and Write permissions to the given bucket. Read more \n\nhere\n\n.
- file_
name_ strpattern - Pattern to match file names in the bucket directory. Read more \n\nhere\n\n
- role_
arn str - The ARN of the AWS role to assume. Only usable in Airbyte Cloud.
- s3_
bucket_ strregion - The region of the S3 bucket. See \n\nhere\n\n for all region codes. 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"]
- s3_
endpoint str - Your S3 endpoint url. Read more \n\nhere\n\n
- s3_
path_ strformat - Format string on how data will be organized inside the bucket directory. Read more \n\nhere\n\n
- secret_
access_ strkey - The corresponding secret to the access key ID. Read more \n\nhere\n\n
- format Property Map
- Format of the data output. See \n\nhere\n\n for more details
- s3Bucket
Name String - The name of the S3 bucket. Read more \n\nhere\n\n.
- s3Bucket
Path String - Directory under the S3 bucket where data will be written. Read more \n\nhere\n\n
- access
Key StringId - The access key ID to access the S3 bucket. Airbyte requires Read and Write permissions to the given bucket. Read more \n\nhere\n\n.
- file
Name StringPattern - Pattern to match file names in the bucket directory. Read more \n\nhere\n\n
- role
Arn String - The ARN of the AWS role to assume. Only usable in Airbyte Cloud.
- s3Bucket
Region String - The region of the S3 bucket. See \n\nhere\n\n for all region codes. 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"]
- s3Endpoint String
- Your S3 endpoint url. Read more \n\nhere\n\n
- s3Path
Format String - Format string on how data will be organized inside the bucket directory. Read more \n\nhere\n\n
- secret
Access StringKey - The corresponding secret to the access key ID. Read more \n\nhere\n\n
DestinationS3ConfigurationFormat, DestinationS3ConfigurationFormatArgs
- Avro
Apache DestinationAvro S3Configuration Format Avro Apache Avro - Csv
Comma DestinationSeparated Values S3Configuration Format Csv Comma Separated Values - Json
Lines DestinationNewline Delimited Json S3Configuration Format Json Lines Newline Delimited Json - Parquet
Columnar DestinationStorage S3Configuration Format Parquet Columnar Storage
- Avro
Apache DestinationAvro S3Configuration Format Avro Apache Avro - Csv
Comma DestinationSeparated Values S3Configuration Format Csv Comma Separated Values - Json
Lines DestinationNewline Delimited Json S3Configuration Format Json Lines Newline Delimited Json - Parquet
Columnar DestinationStorage S3Configuration Format Parquet Columnar Storage
- avro
Apache DestinationAvro S3Configuration Format Avro Apache Avro - csv
Comma DestinationSeparated Values S3Configuration Format Csv Comma Separated Values - json
Lines DestinationNewline Delimited Json S3Configuration Format Json Lines Newline Delimited Json - parquet
Columnar DestinationStorage S3Configuration Format Parquet Columnar Storage
- avro
Apache DestinationAvro S3Configuration Format Avro Apache Avro - csv
Comma DestinationSeparated Values S3Configuration Format Csv Comma Separated Values - json
Lines DestinationNewline Delimited Json S3Configuration Format Json Lines Newline Delimited Json - parquet
Columnar DestinationStorage S3Configuration Format Parquet Columnar Storage
- avro_
apache_ Destinationavro S3Configuration Format Avro Apache Avro - csv_
comma_ Destinationseparated_ values S3Configuration Format Csv Comma Separated Values - json_
lines_ Destinationnewline_ delimited_ json S3Configuration Format Json Lines Newline Delimited Json - parquet_
columnar_ Destinationstorage S3Configuration Format Parquet Columnar Storage
DestinationS3ConfigurationFormatAvroApacheAvro, DestinationS3ConfigurationFormatAvroApacheAvroArgs
- Compression
Codec DestinationS3Configuration Format Avro Apache Avro Compression Codec - The compression algorithm used to compress data. Default to no compression.
- Additional
Properties string - Parsed as JSON.
- Format
Type string - Default: "Avro"; must be "Avro"
- Compression
Codec DestinationS3Configuration Format Avro Apache Avro Compression Codec - The compression algorithm used to compress data. Default to no compression.
- Additional
Properties string - Parsed as JSON.
- Format
Type string - Default: "Avro"; must be "Avro"
- compression
Codec DestinationS3Configuration Format Avro Apache Avro Compression Codec - The compression algorithm used to compress data. Default to no compression.
- additional
Properties String - Parsed as JSON.
- format
Type String - Default: "Avro"; must be "Avro"
- compression
Codec DestinationS3Configuration Format Avro Apache Avro Compression Codec - The compression algorithm used to compress data. Default to no compression.
- additional
Properties string - Parsed as JSON.
- format
Type string - Default: "Avro"; must be "Avro"
- compression_
codec DestinationS3Configuration Format Avro Apache Avro Compression Codec - The compression algorithm used to compress data. Default to no compression.
- additional_
properties str - Parsed as JSON.
- format_
type str - Default: "Avro"; must be "Avro"
- compression
Codec Property Map - The compression algorithm used to compress data. Default to no compression.
- additional
Properties String - Parsed as JSON.
- format
Type String - Default: "Avro"; must be "Avro"
DestinationS3ConfigurationFormatAvroApacheAvroCompressionCodec, DestinationS3ConfigurationFormatAvroApacheAvroCompressionCodecArgs
- Bzip2
Destination
S3Configuration Format Avro Apache Avro Compression Codec Bzip2 - Deflate
Destination
S3Configuration Format Avro Apache Avro Compression Codec Deflate - No
Compression DestinationS3Configuration Format Avro Apache Avro Compression Codec No Compression - Snappy
Destination
S3Configuration Format Avro Apache Avro Compression Codec Snappy - Xz
Destination
S3Configuration Format Avro Apache Avro Compression Codec Xz - Zstandard
Destination
S3Configuration Format Avro Apache Avro Compression Codec Zstandard
- Bzip2
Destination
S3Configuration Format Avro Apache Avro Compression Codec Bzip2 - Deflate
Destination
S3Configuration Format Avro Apache Avro Compression Codec Deflate - No
Compression DestinationS3Configuration Format Avro Apache Avro Compression Codec No Compression - Snappy
Destination
S3Configuration Format Avro Apache Avro Compression Codec Snappy - Xz
Destination
S3Configuration Format Avro Apache Avro Compression Codec Xz - Zstandard
Destination
S3Configuration Format Avro Apache Avro Compression Codec Zstandard
- bzip2
Destination
S3Configuration Format Avro Apache Avro Compression Codec Bzip2 - deflate
Destination
S3Configuration Format Avro Apache Avro Compression Codec Deflate - no
Compression DestinationS3Configuration Format Avro Apache Avro Compression Codec No Compression - snappy
Destination
S3Configuration Format Avro Apache Avro Compression Codec Snappy - xz
Destination
S3Configuration Format Avro Apache Avro Compression Codec Xz - zstandard
Destination
S3Configuration Format Avro Apache Avro Compression Codec Zstandard
- bzip2
Destination
S3Configuration Format Avro Apache Avro Compression Codec Bzip2 - deflate
Destination
S3Configuration Format Avro Apache Avro Compression Codec Deflate - no
Compression DestinationS3Configuration Format Avro Apache Avro Compression Codec No Compression - snappy
Destination
S3Configuration Format Avro Apache Avro Compression Codec Snappy - xz
Destination
S3Configuration Format Avro Apache Avro Compression Codec Xz - zstandard
Destination
S3Configuration Format Avro Apache Avro Compression Codec Zstandard
- bzip2
Destination
S3Configuration Format Avro Apache Avro Compression Codec Bzip2 - deflate
Destination
S3Configuration Format Avro Apache Avro Compression Codec Deflate - no_
compression DestinationS3Configuration Format Avro Apache Avro Compression Codec No Compression - snappy
Destination
S3Configuration Format Avro Apache Avro Compression Codec Snappy - xz
Destination
S3Configuration Format Avro Apache Avro Compression Codec Xz - zstandard
Destination
S3Configuration Format Avro Apache Avro Compression Codec Zstandard
DestinationS3ConfigurationFormatAvroApacheAvroCompressionCodecBzip2, DestinationS3ConfigurationFormatAvroApacheAvroCompressionCodecBzip2Args
- Additional
Properties string - Parsed as JSON.
- Codec string
- Default: "bzip2"; must be "bzip2"
- Additional
Properties string - Parsed as JSON.
- Codec string
- Default: "bzip2"; must be "bzip2"
- additional
Properties String - Parsed as JSON.
- codec String
- Default: "bzip2"; must be "bzip2"
- additional
Properties string - Parsed as JSON.
- codec string
- Default: "bzip2"; must be "bzip2"
- additional_
properties str - Parsed as JSON.
- codec str
- Default: "bzip2"; must be "bzip2"
- additional
Properties String - Parsed as JSON.
- codec String
- Default: "bzip2"; must be "bzip2"
DestinationS3ConfigurationFormatAvroApacheAvroCompressionCodecDeflate, DestinationS3ConfigurationFormatAvroApacheAvroCompressionCodecDeflateArgs
- Compression
Level double - Additional
Properties string - Parsed as JSON.
- Codec string
- Default: "Deflate"; must be "Deflate"
- Compression
Level float64 - Additional
Properties string - Parsed as JSON.
- Codec string
- Default: "Deflate"; must be "Deflate"
- compression
Level Double - additional
Properties String - Parsed as JSON.
- codec String
- Default: "Deflate"; must be "Deflate"
- compression
Level number - additional
Properties string - Parsed as JSON.
- codec string
- Default: "Deflate"; must be "Deflate"
- compression_
level float - additional_
properties str - Parsed as JSON.
- codec str
- Default: "Deflate"; must be "Deflate"
- compression
Level Number - additional
Properties String - Parsed as JSON.
- codec String
- Default: "Deflate"; must be "Deflate"
DestinationS3ConfigurationFormatAvroApacheAvroCompressionCodecNoCompression, DestinationS3ConfigurationFormatAvroApacheAvroCompressionCodecNoCompressionArgs
- Additional
Properties string - Parsed as JSON.
- Codec string
- Default: "no compression"; must be "no compression"
- Additional
Properties string - Parsed as JSON.
- Codec string
- Default: "no compression"; must be "no compression"
- additional
Properties String - Parsed as JSON.
- codec String
- Default: "no compression"; must be "no compression"
- additional
Properties string - Parsed as JSON.
- codec string
- Default: "no compression"; must be "no compression"
- additional_
properties str - Parsed as JSON.
- codec str
- Default: "no compression"; must be "no compression"
- additional
Properties String - Parsed as JSON.
- codec String
- Default: "no compression"; must be "no compression"
DestinationS3ConfigurationFormatAvroApacheAvroCompressionCodecSnappy, DestinationS3ConfigurationFormatAvroApacheAvroCompressionCodecSnappyArgs
- Additional
Properties string - Parsed as JSON.
- Codec string
- Default: "snappy"; must be "snappy"
- Additional
Properties string - Parsed as JSON.
- Codec string
- Default: "snappy"; must be "snappy"
- additional
Properties String - Parsed as JSON.
- codec String
- Default: "snappy"; must be "snappy"
- additional
Properties string - Parsed as JSON.
- codec string
- Default: "snappy"; must be "snappy"
- additional_
properties str - Parsed as JSON.
- codec str
- Default: "snappy"; must be "snappy"
- additional
Properties String - Parsed as JSON.
- codec String
- Default: "snappy"; must be "snappy"
DestinationS3ConfigurationFormatAvroApacheAvroCompressionCodecXz, DestinationS3ConfigurationFormatAvroApacheAvroCompressionCodecXzArgs
- Compression
Level double - Additional
Properties string - Parsed as JSON.
- Codec string
- Default: "xz"; must be "xz"
- Compression
Level float64 - Additional
Properties string - Parsed as JSON.
- Codec string
- Default: "xz"; must be "xz"
- compression
Level Double - additional
Properties String - Parsed as JSON.
- codec String
- Default: "xz"; must be "xz"
- compression
Level number - additional
Properties string - Parsed as JSON.
- codec string
- Default: "xz"; must be "xz"
- compression_
level float - additional_
properties str - Parsed as JSON.
- codec str
- Default: "xz"; must be "xz"
- compression
Level Number - additional
Properties String - Parsed as JSON.
- codec String
- Default: "xz"; must be "xz"
DestinationS3ConfigurationFormatAvroApacheAvroCompressionCodecZstandard, DestinationS3ConfigurationFormatAvroApacheAvroCompressionCodecZstandardArgs
- Compression
Level double - Include
Checksum bool - Additional
Properties string - Parsed as JSON.
- Codec string
- Default: "zstandard"; must be "zstandard"
- Compression
Level float64 - Include
Checksum bool - Additional
Properties string - Parsed as JSON.
- Codec string
- Default: "zstandard"; must be "zstandard"
- compression
Level Double - include
Checksum Boolean - additional
Properties String - Parsed as JSON.
- codec String
- Default: "zstandard"; must be "zstandard"
- compression
Level number - include
Checksum boolean - additional
Properties string - Parsed as JSON.
- codec string
- Default: "zstandard"; must be "zstandard"
- compression_
level float - include_
checksum bool - additional_
properties str - Parsed as JSON.
- codec str
- Default: "zstandard"; must be "zstandard"
- compression
Level Number - include
Checksum Boolean - additional
Properties String - Parsed as JSON.
- codec String
- Default: "zstandard"; must be "zstandard"
DestinationS3ConfigurationFormatCsvCommaSeparatedValues, DestinationS3ConfigurationFormatCsvCommaSeparatedValuesArgs
- Additional
Properties string - Parsed as JSON.
- Compression
Destination
S3Configuration Format Csv Comma Separated Values Compression - Whether the output files should be compressed. If compression is selected, the output filename will have an extra extension (GZIP: ".jsonl.gz").
- Flattening string
- Default: "No flattening"; must be one of ["No flattening", "Root level flattening"]
- Format
Type string - Default: "CSV"; must be "CSV"
- Additional
Properties string - Parsed as JSON.
- Compression
Destination
S3Configuration Format Csv Comma Separated Values Compression - Whether the output files should be compressed. If compression is selected, the output filename will have an extra extension (GZIP: ".jsonl.gz").
- Flattening string
- Default: "No flattening"; must be one of ["No flattening", "Root level flattening"]
- Format
Type string - Default: "CSV"; must be "CSV"
- additional
Properties String - Parsed as JSON.
- compression
Destination
S3Configuration Format Csv Comma Separated Values Compression - Whether the output files should be compressed. If compression is selected, the output filename will have an extra extension (GZIP: ".jsonl.gz").
- flattening String
- Default: "No flattening"; must be one of ["No flattening", "Root level flattening"]
- format
Type String - Default: "CSV"; must be "CSV"
- additional
Properties string - Parsed as JSON.
- compression
Destination
S3Configuration Format Csv Comma Separated Values Compression - Whether the output files should be compressed. If compression is selected, the output filename will have an extra extension (GZIP: ".jsonl.gz").
- flattening string
- Default: "No flattening"; must be one of ["No flattening", "Root level flattening"]
- format
Type string - Default: "CSV"; must be "CSV"
- additional_
properties str - Parsed as JSON.
- compression
Destination
S3Configuration Format Csv Comma Separated Values Compression - Whether the output files should be compressed. If compression is selected, the output filename will have an extra extension (GZIP: ".jsonl.gz").
- flattening str
- Default: "No flattening"; must be one of ["No flattening", "Root level flattening"]
- format_
type str - Default: "CSV"; must be "CSV"
- additional
Properties String - Parsed as JSON.
- compression Property Map
- Whether the output files should be compressed. If compression is selected, the output filename will have an extra extension (GZIP: ".jsonl.gz").
- flattening String
- Default: "No flattening"; must be one of ["No flattening", "Root level flattening"]
- format
Type String - Default: "CSV"; must be "CSV"
DestinationS3ConfigurationFormatCsvCommaSeparatedValuesCompression, DestinationS3ConfigurationFormatCsvCommaSeparatedValuesCompressionArgs
DestinationS3ConfigurationFormatCsvCommaSeparatedValuesCompressionGzip, DestinationS3ConfigurationFormatCsvCommaSeparatedValuesCompressionGzipArgs
- Additional
Properties string - Parsed as JSON.
- Compression
Type string - Default: "GZIP"; must be "GZIP"
- Additional
Properties string - Parsed as JSON.
- Compression
Type string - Default: "GZIP"; must be "GZIP"
- additional
Properties String - Parsed as JSON.
- compression
Type String - Default: "GZIP"; must be "GZIP"
- additional
Properties string - Parsed as JSON.
- compression
Type string - Default: "GZIP"; must be "GZIP"
- additional_
properties str - Parsed as JSON.
- compression_
type str - Default: "GZIP"; must be "GZIP"
- additional
Properties String - Parsed as JSON.
- compression
Type String - Default: "GZIP"; must be "GZIP"
DestinationS3ConfigurationFormatCsvCommaSeparatedValuesCompressionNoCompression, DestinationS3ConfigurationFormatCsvCommaSeparatedValuesCompressionNoCompressionArgs
- Additional
Properties string - Parsed as JSON.
- Compression
Type string - Default: "No Compression"; must be "No Compression"
- Additional
Properties string - Parsed as JSON.
- Compression
Type string - Default: "No Compression"; must be "No Compression"
- additional
Properties String - Parsed as JSON.
- compression
Type String - Default: "No Compression"; must be "No Compression"
- additional
Properties string - Parsed as JSON.
- compression
Type string - Default: "No Compression"; must be "No Compression"
- additional_
properties str - Parsed as JSON.
- compression_
type str - Default: "No Compression"; must be "No Compression"
- additional
Properties String - Parsed as JSON.
- compression
Type String - Default: "No Compression"; must be "No Compression"
DestinationS3ConfigurationFormatJsonLinesNewlineDelimitedJson, DestinationS3ConfigurationFormatJsonLinesNewlineDelimitedJsonArgs
- Additional
Properties string - Parsed as JSON.
- Compression
Destination
S3Configuration Format Json Lines Newline Delimited Json Compression - Whether the output files should be compressed. If compression is selected, the output filename will have an extra extension (GZIP: ".jsonl.gz").
- Flattening string
- Default: "No flattening"; must be one of ["No flattening", "Root level flattening"]
- Format
Type string - Default: "JSONL"; must be "JSONL"
- Additional
Properties string - Parsed as JSON.
- Compression
Destination
S3Configuration Format Json Lines Newline Delimited Json Compression - Whether the output files should be compressed. If compression is selected, the output filename will have an extra extension (GZIP: ".jsonl.gz").
- Flattening string
- Default: "No flattening"; must be one of ["No flattening", "Root level flattening"]
- Format
Type string - Default: "JSONL"; must be "JSONL"
- additional
Properties String - Parsed as JSON.
- compression
Destination
S3Configuration Format Json Lines Newline Delimited Json Compression - Whether the output files should be compressed. If compression is selected, the output filename will have an extra extension (GZIP: ".jsonl.gz").
- flattening String
- Default: "No flattening"; must be one of ["No flattening", "Root level flattening"]
- format
Type String - Default: "JSONL"; must be "JSONL"
- additional
Properties string - Parsed as JSON.
- compression
Destination
S3Configuration Format Json Lines Newline Delimited Json Compression - Whether the output files should be compressed. If compression is selected, the output filename will have an extra extension (GZIP: ".jsonl.gz").
- flattening string
- Default: "No flattening"; must be one of ["No flattening", "Root level flattening"]
- format
Type string - Default: "JSONL"; must be "JSONL"
- additional_
properties str - Parsed as JSON.
- compression
Destination
S3Configuration Format Json Lines Newline Delimited Json Compression - Whether the output files should be compressed. If compression is selected, the output filename will have an extra extension (GZIP: ".jsonl.gz").
- flattening str
- Default: "No flattening"; must be one of ["No flattening", "Root level flattening"]
- format_
type str - Default: "JSONL"; must be "JSONL"
- additional
Properties String - Parsed as JSON.
- compression Property Map
- Whether the output files should be compressed. If compression is selected, the output filename will have an extra extension (GZIP: ".jsonl.gz").
- flattening String
- Default: "No flattening"; must be one of ["No flattening", "Root level flattening"]
- format
Type String - Default: "JSONL"; must be "JSONL"
DestinationS3ConfigurationFormatJsonLinesNewlineDelimitedJsonCompression, DestinationS3ConfigurationFormatJsonLinesNewlineDelimitedJsonCompressionArgs
DestinationS3ConfigurationFormatJsonLinesNewlineDelimitedJsonCompressionGzip, DestinationS3ConfigurationFormatJsonLinesNewlineDelimitedJsonCompressionGzipArgs
- Additional
Properties string - Parsed as JSON.
- Compression
Type string - Default: "GZIP"; must be "GZIP"
- Additional
Properties string - Parsed as JSON.
- Compression
Type string - Default: "GZIP"; must be "GZIP"
- additional
Properties String - Parsed as JSON.
- compression
Type String - Default: "GZIP"; must be "GZIP"
- additional
Properties string - Parsed as JSON.
- compression
Type string - Default: "GZIP"; must be "GZIP"
- additional_
properties str - Parsed as JSON.
- compression_
type str - Default: "GZIP"; must be "GZIP"
- additional
Properties String - Parsed as JSON.
- compression
Type String - Default: "GZIP"; must be "GZIP"
DestinationS3ConfigurationFormatJsonLinesNewlineDelimitedJsonCompressionNoCompression, DestinationS3ConfigurationFormatJsonLinesNewlineDelimitedJsonCompressionNoCompressionArgs
- Additional
Properties string - Parsed as JSON.
- Compression
Type string - Default: "No Compression"; must be "No Compression"
- Additional
Properties string - Parsed as JSON.
- Compression
Type string - Default: "No Compression"; must be "No Compression"
- additional
Properties String - Parsed as JSON.
- compression
Type String - Default: "No Compression"; must be "No Compression"
- additional
Properties string - Parsed as JSON.
- compression
Type string - Default: "No Compression"; must be "No Compression"
- additional_
properties str - Parsed as JSON.
- compression_
type str - Default: "No Compression"; must be "No Compression"
- additional
Properties String - Parsed as JSON.
- compression
Type String - Default: "No Compression"; must be "No Compression"
DestinationS3ConfigurationFormatParquetColumnarStorage, DestinationS3ConfigurationFormatParquetColumnarStorageArgs
- Additional
Properties string - Parsed as JSON.
- Block
Size doubleMb - This is the size of a row group being buffered in memory. It limits the memory usage when writing. Larger values will improve the IO when reading, but consume more memory when writing. Default: 128 MB. Default: 128
- Compression
Codec string - The compression algorithm used to compress data pages. Default: "UNCOMPRESSED"; must be one of ["UNCOMPRESSED", "SNAPPY", "GZIP", "LZO", "BROTLI", "LZ4", "ZSTD"]
- Dictionary
Encoding bool - Default: true.
- Dictionary
Page doubleSize Kb - There is one dictionary page per column per row group when dictionary encoding is used. The dictionary page size works like the page size but for dictionary. Default: 1024 KB. Default: 1024
- Format
Type string - Default: "Parquet"; must be "Parquet"
- Max
Padding doubleSize Mb - Maximum size allowed as padding to align row groups. This is also the minimum size of a row group. Default: 8 MB. Default: 8
- Page
Size doubleKb - The page size is for compression. A block is composed of pages. A page is the smallest unit that must be read fully to access a single record. If this value is too small, the compression will deteriorate. Default: 1024 KB. Default: 1024
- Additional
Properties string - Parsed as JSON.
- Block
Size float64Mb - This is the size of a row group being buffered in memory. It limits the memory usage when writing. Larger values will improve the IO when reading, but consume more memory when writing. Default: 128 MB. Default: 128
- Compression
Codec string - The compression algorithm used to compress data pages. Default: "UNCOMPRESSED"; must be one of ["UNCOMPRESSED", "SNAPPY", "GZIP", "LZO", "BROTLI", "LZ4", "ZSTD"]
- Dictionary
Encoding bool - Default: true.
- Dictionary
Page float64Size Kb - There is one dictionary page per column per row group when dictionary encoding is used. The dictionary page size works like the page size but for dictionary. Default: 1024 KB. Default: 1024
- Format
Type string - Default: "Parquet"; must be "Parquet"
- Max
Padding float64Size Mb - Maximum size allowed as padding to align row groups. This is also the minimum size of a row group. Default: 8 MB. Default: 8
- Page
Size float64Kb - The page size is for compression. A block is composed of pages. A page is the smallest unit that must be read fully to access a single record. If this value is too small, the compression will deteriorate. Default: 1024 KB. Default: 1024
- additional
Properties String - Parsed as JSON.
- block
Size DoubleMb - This is the size of a row group being buffered in memory. It limits the memory usage when writing. Larger values will improve the IO when reading, but consume more memory when writing. Default: 128 MB. Default: 128
- compression
Codec String - The compression algorithm used to compress data pages. Default: "UNCOMPRESSED"; must be one of ["UNCOMPRESSED", "SNAPPY", "GZIP", "LZO", "BROTLI", "LZ4", "ZSTD"]
- dictionary
Encoding Boolean - Default: true.
- dictionary
Page DoubleSize Kb - There is one dictionary page per column per row group when dictionary encoding is used. The dictionary page size works like the page size but for dictionary. Default: 1024 KB. Default: 1024
- format
Type String - Default: "Parquet"; must be "Parquet"
- max
Padding DoubleSize Mb - Maximum size allowed as padding to align row groups. This is also the minimum size of a row group. Default: 8 MB. Default: 8
- page
Size DoubleKb - The page size is for compression. A block is composed of pages. A page is the smallest unit that must be read fully to access a single record. If this value is too small, the compression will deteriorate. Default: 1024 KB. Default: 1024
- additional
Properties string - Parsed as JSON.
- block
Size numberMb - This is the size of a row group being buffered in memory. It limits the memory usage when writing. Larger values will improve the IO when reading, but consume more memory when writing. Default: 128 MB. Default: 128
- compression
Codec string - The compression algorithm used to compress data pages. Default: "UNCOMPRESSED"; must be one of ["UNCOMPRESSED", "SNAPPY", "GZIP", "LZO", "BROTLI", "LZ4", "ZSTD"]
- dictionary
Encoding boolean - Default: true.
- dictionary
Page numberSize Kb - There is one dictionary page per column per row group when dictionary encoding is used. The dictionary page size works like the page size but for dictionary. Default: 1024 KB. Default: 1024
- format
Type string - Default: "Parquet"; must be "Parquet"
- max
Padding numberSize Mb - Maximum size allowed as padding to align row groups. This is also the minimum size of a row group. Default: 8 MB. Default: 8
- page
Size numberKb - The page size is for compression. A block is composed of pages. A page is the smallest unit that must be read fully to access a single record. If this value is too small, the compression will deteriorate. Default: 1024 KB. Default: 1024
- additional_
properties str - Parsed as JSON.
- block_
size_ floatmb - This is the size of a row group being buffered in memory. It limits the memory usage when writing. Larger values will improve the IO when reading, but consume more memory when writing. Default: 128 MB. Default: 128
- compression_
codec str - The compression algorithm used to compress data pages. Default: "UNCOMPRESSED"; must be one of ["UNCOMPRESSED", "SNAPPY", "GZIP", "LZO", "BROTLI", "LZ4", "ZSTD"]
- dictionary_
encoding bool - Default: true.
- dictionary_
page_ floatsize_ kb - There is one dictionary page per column per row group when dictionary encoding is used. The dictionary page size works like the page size but for dictionary. Default: 1024 KB. Default: 1024
- format_
type str - Default: "Parquet"; must be "Parquet"
- max_
padding_ floatsize_ mb - Maximum size allowed as padding to align row groups. This is also the minimum size of a row group. Default: 8 MB. Default: 8
- page_
size_ floatkb - The page size is for compression. A block is composed of pages. A page is the smallest unit that must be read fully to access a single record. If this value is too small, the compression will deteriorate. Default: 1024 KB. Default: 1024
- additional
Properties String - Parsed as JSON.
- block
Size NumberMb - This is the size of a row group being buffered in memory. It limits the memory usage when writing. Larger values will improve the IO when reading, but consume more memory when writing. Default: 128 MB. Default: 128
- compression
Codec String - The compression algorithm used to compress data pages. Default: "UNCOMPRESSED"; must be one of ["UNCOMPRESSED", "SNAPPY", "GZIP", "LZO", "BROTLI", "LZ4", "ZSTD"]
- dictionary
Encoding Boolean - Default: true.
- dictionary
Page NumberSize Kb - There is one dictionary page per column per row group when dictionary encoding is used. The dictionary page size works like the page size but for dictionary. Default: 1024 KB. Default: 1024
- format
Type String - Default: "Parquet"; must be "Parquet"
- max
Padding NumberSize Mb - Maximum size allowed as padding to align row groups. This is also the minimum size of a row group. Default: 8 MB. Default: 8
- page
Size NumberKb - The page size is for compression. A block is composed of pages. A page is the smallest unit that must be read fully to access a single record. If this value is too small, the compression will deteriorate. Default: 1024 KB. Default: 1024
Import
$ pulumi import airbyte:index/destinationS3:DestinationS3 my_airbyte_destination_s3 ""
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.