airbyte.DestinationS3Glue
Explore with Pulumi AI
DestinationS3Glue 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.DestinationS3Glue;
import com.pulumi.airbyte.DestinationS3GlueArgs;
import com.pulumi.airbyte.inputs.DestinationS3GlueConfigurationArgs;
import com.pulumi.airbyte.inputs.DestinationS3GlueConfigurationFormatArgs;
import com.pulumi.airbyte.inputs.DestinationS3GlueConfigurationFormatJsonLinesNewlineDelimitedJsonArgs;
import com.pulumi.airbyte.inputs.DestinationS3GlueConfigurationFormatJsonLinesNewlineDelimitedJsonCompressionArgs;
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 myDestinationS3glue = new DestinationS3Glue("myDestinationS3glue", DestinationS3GlueArgs.builder()
.configuration(DestinationS3GlueConfigurationArgs.builder()
.access_key_id("A012345678910EXAMPLE")
.file_name_pattern("{date}")
.format(DestinationS3GlueConfigurationFormatArgs.builder()
.jsonLinesNewlineDelimitedJson(DestinationS3GlueConfigurationFormatJsonLinesNewlineDelimitedJsonArgs.builder()
.compression()
.flattening("No flattening")
.formatType("JSONL")
.build())
.build())
.glue_database("airbyte_database")
.glue_serialization_library("org.openx.data.jsonserde.JsonSerDe")
.s3_bucket_name("airbyte_sync")
.s3_bucket_path("data_sync/test")
.s3_bucket_region("us-gov-west-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("7a9c505b-1990-4b38-b243-1c254ff78c36")
.workspaceId("e7df4138-2176-42e6-aa11-ed72fe60b365")
.build());
}
}
resources:
myDestinationS3glue:
type: airbyte:DestinationS3Glue
properties:
configuration:
access_key_id: A012345678910EXAMPLE
file_name_pattern: '{date}'
format:
jsonLinesNewlineDelimitedJson:
compression: {}
flattening: No flattening
formatType: JSONL
glue_database: airbyte_database
glue_serialization_library: org.openx.data.jsonserde.JsonSerDe
s3_bucket_name: airbyte_sync
s3_bucket_path: data_sync/test
s3_bucket_region: us-gov-west-1
s3_endpoint: http://localhost:9000
s3_path_format: ${NAMESPACE}/${STREAM_NAME}/${YEAR}_${MONTH}_${DAY}_${EPOCH}_
secret_access_key: a012345678910ABCDEFGH/AbCdEfGhEXAMPLEKEY
definitionId: 7a9c505b-1990-4b38-b243-1c254ff78c36
workspaceId: e7df4138-2176-42e6-aa11-ed72fe60b365
Create DestinationS3Glue Resource
Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.
Constructor syntax
new DestinationS3Glue(name: string, args: DestinationS3GlueArgs, opts?: CustomResourceOptions);
@overload
def DestinationS3Glue(resource_name: str,
args: DestinationS3GlueArgs,
opts: Optional[ResourceOptions] = None)
@overload
def DestinationS3Glue(resource_name: str,
opts: Optional[ResourceOptions] = None,
configuration: Optional[DestinationS3GlueConfigurationArgs] = None,
workspace_id: Optional[str] = None,
definition_id: Optional[str] = None,
name: Optional[str] = None)
func NewDestinationS3Glue(ctx *Context, name string, args DestinationS3GlueArgs, opts ...ResourceOption) (*DestinationS3Glue, error)
public DestinationS3Glue(string name, DestinationS3GlueArgs args, CustomResourceOptions? opts = null)
public DestinationS3Glue(String name, DestinationS3GlueArgs args)
public DestinationS3Glue(String name, DestinationS3GlueArgs args, CustomResourceOptions options)
type: airbyte:DestinationS3Glue
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 DestinationS3GlueArgs
- 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 DestinationS3GlueArgs
- 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 DestinationS3GlueArgs
- The arguments to resource properties.
- opts ResourceOption
- Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args DestinationS3GlueArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- name String
- The unique name of the resource.
- args DestinationS3GlueArgs
- 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 destinationS3GlueResource = new Airbyte.DestinationS3Glue("destinationS3GlueResource", new()
{
Configuration = new Airbyte.Inputs.DestinationS3GlueConfigurationArgs
{
Format = new Airbyte.Inputs.DestinationS3GlueConfigurationFormatArgs
{
JsonLinesNewlineDelimitedJson = new Airbyte.Inputs.DestinationS3GlueConfigurationFormatJsonLinesNewlineDelimitedJsonArgs
{
Compression = new Airbyte.Inputs.DestinationS3GlueConfigurationFormatJsonLinesNewlineDelimitedJsonCompressionArgs
{
Gzip = new Airbyte.Inputs.DestinationS3GlueConfigurationFormatJsonLinesNewlineDelimitedJsonCompressionGzipArgs
{
CompressionType = "string",
},
NoCompression = new Airbyte.Inputs.DestinationS3GlueConfigurationFormatJsonLinesNewlineDelimitedJsonCompressionNoCompressionArgs
{
CompressionType = "string",
},
},
Flattening = "string",
FormatType = "string",
},
},
GlueDatabase = "string",
S3BucketName = "string",
S3BucketPath = "string",
AccessKeyId = "string",
FileNamePattern = "string",
GlueSerializationLibrary = "string",
S3BucketRegion = "string",
S3Endpoint = "string",
S3PathFormat = "string",
SecretAccessKey = "string",
},
WorkspaceId = "string",
DefinitionId = "string",
Name = "string",
});
example, err := airbyte.NewDestinationS3Glue(ctx, "destinationS3GlueResource", &airbyte.DestinationS3GlueArgs{
Configuration: &.DestinationS3GlueConfigurationArgs{
Format: &.DestinationS3GlueConfigurationFormatArgs{
JsonLinesNewlineDelimitedJson: &.DestinationS3GlueConfigurationFormatJsonLinesNewlineDelimitedJsonArgs{
Compression: &.DestinationS3GlueConfigurationFormatJsonLinesNewlineDelimitedJsonCompressionArgs{
Gzip: &.DestinationS3GlueConfigurationFormatJsonLinesNewlineDelimitedJsonCompressionGzipArgs{
CompressionType: pulumi.String("string"),
},
NoCompression: &.DestinationS3GlueConfigurationFormatJsonLinesNewlineDelimitedJsonCompressionNoCompressionArgs{
CompressionType: pulumi.String("string"),
},
},
Flattening: pulumi.String("string"),
FormatType: pulumi.String("string"),
},
},
GlueDatabase: pulumi.String("string"),
S3BucketName: pulumi.String("string"),
S3BucketPath: pulumi.String("string"),
AccessKeyId: pulumi.String("string"),
FileNamePattern: pulumi.String("string"),
GlueSerializationLibrary: 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 destinationS3GlueResource = new DestinationS3Glue("destinationS3GlueResource", DestinationS3GlueArgs.builder()
.configuration(DestinationS3GlueConfigurationArgs.builder()
.format(DestinationS3GlueConfigurationFormatArgs.builder()
.jsonLinesNewlineDelimitedJson(DestinationS3GlueConfigurationFormatJsonLinesNewlineDelimitedJsonArgs.builder()
.compression(DestinationS3GlueConfigurationFormatJsonLinesNewlineDelimitedJsonCompressionArgs.builder()
.gzip(DestinationS3GlueConfigurationFormatJsonLinesNewlineDelimitedJsonCompressionGzipArgs.builder()
.compressionType("string")
.build())
.noCompression(DestinationS3GlueConfigurationFormatJsonLinesNewlineDelimitedJsonCompressionNoCompressionArgs.builder()
.compressionType("string")
.build())
.build())
.flattening("string")
.formatType("string")
.build())
.build())
.glueDatabase("string")
.s3BucketName("string")
.s3BucketPath("string")
.accessKeyId("string")
.fileNamePattern("string")
.glueSerializationLibrary("string")
.s3BucketRegion("string")
.s3Endpoint("string")
.s3PathFormat("string")
.secretAccessKey("string")
.build())
.workspaceId("string")
.definitionId("string")
.name("string")
.build());
destination_s3_glue_resource = airbyte.DestinationS3Glue("destinationS3GlueResource",
configuration={
"format": {
"json_lines_newline_delimited_json": {
"compression": {
"gzip": {
"compression_type": "string",
},
"no_compression": {
"compression_type": "string",
},
},
"flattening": "string",
"format_type": "string",
},
},
"glue_database": "string",
"s3_bucket_name": "string",
"s3_bucket_path": "string",
"access_key_id": "string",
"file_name_pattern": "string",
"glue_serialization_library": "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 destinationS3GlueResource = new airbyte.DestinationS3Glue("destinationS3GlueResource", {
configuration: {
format: {
jsonLinesNewlineDelimitedJson: {
compression: {
gzip: {
compressionType: "string",
},
noCompression: {
compressionType: "string",
},
},
flattening: "string",
formatType: "string",
},
},
glueDatabase: "string",
s3BucketName: "string",
s3BucketPath: "string",
accessKeyId: "string",
fileNamePattern: "string",
glueSerializationLibrary: "string",
s3BucketRegion: "string",
s3Endpoint: "string",
s3PathFormat: "string",
secretAccessKey: "string",
},
workspaceId: "string",
definitionId: "string",
name: "string",
});
type: airbyte:DestinationS3Glue
properties:
configuration:
accessKeyId: string
fileNamePattern: string
format:
jsonLinesNewlineDelimitedJson:
compression:
gzip:
compressionType: string
noCompression:
compressionType: string
flattening: string
formatType: string
glueDatabase: string
glueSerializationLibrary: string
s3BucketName: string
s3BucketPath: string
s3BucketRegion: string
s3Endpoint: string
s3PathFormat: string
secretAccessKey: string
definitionId: string
name: string
workspaceId: string
DestinationS3Glue 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 DestinationS3Glue resource accepts the following input properties:
- Configuration
Destination
S3Glue 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
S3Glue 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
S3Glue 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
S3Glue 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
S3Glue 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 DestinationS3Glue 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 DestinationS3Glue 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 DestinationS3Glue 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 DestinationS3Glue 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 DestinationS3Glue 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 DestinationS3Glue 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 DestinationS3Glue Resource
Get an existing DestinationS3Glue 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?: DestinationS3GlueState, opts?: CustomResourceOptions): DestinationS3Glue
@staticmethod
def get(resource_name: str,
id: str,
opts: Optional[ResourceOptions] = None,
configuration: Optional[DestinationS3GlueConfigurationArgs] = 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[DestinationS3GlueResourceAllocationArgs] = None,
workspace_id: Optional[str] = None) -> DestinationS3Glue
func GetDestinationS3Glue(ctx *Context, name string, id IDInput, state *DestinationS3GlueState, opts ...ResourceOption) (*DestinationS3Glue, error)
public static DestinationS3Glue Get(string name, Input<string> id, DestinationS3GlueState? state, CustomResourceOptions? opts = null)
public static DestinationS3Glue get(String name, Output<String> id, DestinationS3GlueState state, CustomResourceOptions options)
resources: _: type: airbyte:DestinationS3Glue 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
S3Glue 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 DestinationS3Glue 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
S3Glue 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 DestinationS3Glue 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
S3Glue 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 DestinationS3Glue 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
S3Glue 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 DestinationS3Glue 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
S3Glue 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 DestinationS3Glue 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
DestinationS3GlueConfiguration, DestinationS3GlueConfigurationArgs
- Format
Destination
S3Glue Configuration Format - Format of the data output. See \n\nhere\n\n for more details
- Glue
Database string - Name of the glue database for creating the tables, leave blank if no integration
- 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 - The pattern allows you to set the file-name format for the S3 staging file(s)
- Glue
Serialization stringLibrary - The library that your query engine will use for reading and writing data in your lake. Default: "org.openx.data.jsonserde.JsonSerDe"; must be one of ["org.openx.data.jsonserde.JsonSerDe", "org.apache.hive.hcatalog.data.JsonSerDe"]
- 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. Default: ""
- S3Path
Format string - Format string on how data will be organized inside the S3 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
S3Glue Configuration Format - Format of the data output. See \n\nhere\n\n for more details
- Glue
Database string - Name of the glue database for creating the tables, leave blank if no integration
- 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 - The pattern allows you to set the file-name format for the S3 staging file(s)
- Glue
Serialization stringLibrary - The library that your query engine will use for reading and writing data in your lake. Default: "org.openx.data.jsonserde.JsonSerDe"; must be one of ["org.openx.data.jsonserde.JsonSerDe", "org.apache.hive.hcatalog.data.JsonSerDe"]
- 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. Default: ""
- S3Path
Format string - Format string on how data will be organized inside the S3 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
S3Glue Configuration Format - Format of the data output. See \n\nhere\n\n for more details
- glue
Database String - Name of the glue database for creating the tables, leave blank if no integration
- 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 - The pattern allows you to set the file-name format for the S3 staging file(s)
- glue
Serialization StringLibrary - The library that your query engine will use for reading and writing data in your lake. Default: "org.openx.data.jsonserde.JsonSerDe"; must be one of ["org.openx.data.jsonserde.JsonSerDe", "org.apache.hive.hcatalog.data.JsonSerDe"]
- 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. Default: ""
- s3Path
Format String - Format string on how data will be organized inside the S3 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
S3Glue Configuration Format - Format of the data output. See \n\nhere\n\n for more details
- glue
Database string - Name of the glue database for creating the tables, leave blank if no integration
- 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 - The pattern allows you to set the file-name format for the S3 staging file(s)
- glue
Serialization stringLibrary - The library that your query engine will use for reading and writing data in your lake. Default: "org.openx.data.jsonserde.JsonSerDe"; must be one of ["org.openx.data.jsonserde.JsonSerDe", "org.apache.hive.hcatalog.data.JsonSerDe"]
- 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. Default: ""
- s3Path
Format string - Format string on how data will be organized inside the S3 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
S3Glue Configuration Format - Format of the data output. See \n\nhere\n\n for more details
- glue_
database str - Name of the glue database for creating the tables, leave blank if no integration
- 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 - The pattern allows you to set the file-name format for the S3 staging file(s)
- glue_
serialization_ strlibrary - The library that your query engine will use for reading and writing data in your lake. Default: "org.openx.data.jsonserde.JsonSerDe"; must be one of ["org.openx.data.jsonserde.JsonSerDe", "org.apache.hive.hcatalog.data.JsonSerDe"]
- 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. Default: ""
- s3_
path_ strformat - Format string on how data will be organized inside the S3 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
- glue
Database String - Name of the glue database for creating the tables, leave blank if no integration
- 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 - The pattern allows you to set the file-name format for the S3 staging file(s)
- glue
Serialization StringLibrary - The library that your query engine will use for reading and writing data in your lake. Default: "org.openx.data.jsonserde.JsonSerDe"; must be one of ["org.openx.data.jsonserde.JsonSerDe", "org.apache.hive.hcatalog.data.JsonSerDe"]
- 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. Default: ""
- s3Path
Format String - Format string on how data will be organized inside the S3 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
DestinationS3GlueConfigurationFormat, DestinationS3GlueConfigurationFormatArgs
DestinationS3GlueConfigurationFormatJsonLinesNewlineDelimitedJson, DestinationS3GlueConfigurationFormatJsonLinesNewlineDelimitedJsonArgs
- Compression
Destination
S3Glue Configuration 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
- Whether the input json data should be normalized (flattened) in the output JSON Lines. Please refer to docs for details. Default: "Root level flattening"; must be one of ["No flattening", "Root level flattening"]
- Format
Type string - Default: "JSONL"; must be "JSONL"
- Compression
Destination
S3Glue Configuration 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
- Whether the input json data should be normalized (flattened) in the output JSON Lines. Please refer to docs for details. Default: "Root level flattening"; must be one of ["No flattening", "Root level flattening"]
- Format
Type string - Default: "JSONL"; must be "JSONL"
- compression
Destination
S3Glue Configuration 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
- Whether the input json data should be normalized (flattened) in the output JSON Lines. Please refer to docs for details. Default: "Root level flattening"; must be one of ["No flattening", "Root level flattening"]
- format
Type String - Default: "JSONL"; must be "JSONL"
- compression
Destination
S3Glue Configuration 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
- Whether the input json data should be normalized (flattened) in the output JSON Lines. Please refer to docs for details. Default: "Root level flattening"; must be one of ["No flattening", "Root level flattening"]
- format
Type string - Default: "JSONL"; must be "JSONL"
- compression
Destination
S3Glue Configuration 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
- Whether the input json data should be normalized (flattened) in the output JSON Lines. Please refer to docs for details. Default: "Root level flattening"; must be one of ["No flattening", "Root level flattening"]
- format_
type str - Default: "JSONL"; must be "JSONL"
- 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
- Whether the input json data should be normalized (flattened) in the output JSON Lines. Please refer to docs for details. Default: "Root level flattening"; must be one of ["No flattening", "Root level flattening"]
- format
Type String - Default: "JSONL"; must be "JSONL"
DestinationS3GlueConfigurationFormatJsonLinesNewlineDelimitedJsonCompression, DestinationS3GlueConfigurationFormatJsonLinesNewlineDelimitedJsonCompressionArgs
DestinationS3GlueConfigurationFormatJsonLinesNewlineDelimitedJsonCompressionGzip, DestinationS3GlueConfigurationFormatJsonLinesNewlineDelimitedJsonCompressionGzipArgs
- Compression
Type string - Default: "GZIP"; must be "GZIP"
- Compression
Type string - Default: "GZIP"; must be "GZIP"
- compression
Type String - Default: "GZIP"; must be "GZIP"
- compression
Type string - Default: "GZIP"; must be "GZIP"
- compression_
type str - Default: "GZIP"; must be "GZIP"
- compression
Type String - Default: "GZIP"; must be "GZIP"
DestinationS3GlueConfigurationFormatJsonLinesNewlineDelimitedJsonCompressionNoCompression, DestinationS3GlueConfigurationFormatJsonLinesNewlineDelimitedJsonCompressionNoCompressionArgs
- Compression
Type string - Default: "No Compression"; must be "No Compression"
- Compression
Type string - Default: "No Compression"; must be "No Compression"
- compression
Type String - Default: "No Compression"; must be "No Compression"
- compression
Type string - Default: "No Compression"; must be "No Compression"
- compression_
type str - Default: "No Compression"; must be "No Compression"
- compression
Type String - Default: "No Compression"; must be "No Compression"
DestinationS3GlueResourceAllocation, DestinationS3GlueResourceAllocationArgs
- Default
Destination
S3Glue Resource Allocation Default - optional resource requirements to run workers (blank for unbounded allocations)
- Job
Specifics List<DestinationS3Glue Resource Allocation Job Specific>
- Default
Destination
S3Glue Resource Allocation Default - optional resource requirements to run workers (blank for unbounded allocations)
- Job
Specifics []DestinationS3Glue Resource Allocation Job Specific
- default_
Destination
S3Glue Resource Allocation Default - optional resource requirements to run workers (blank for unbounded allocations)
- job
Specifics List<DestinationS3Glue Resource Allocation Job Specific>
- default
Destination
S3Glue Resource Allocation Default - optional resource requirements to run workers (blank for unbounded allocations)
- job
Specifics DestinationS3Glue Resource Allocation Job Specific[]
- default
Destination
S3Glue Resource Allocation Default - optional resource requirements to run workers (blank for unbounded allocations)
- job_
specifics Sequence[DestinationS3Glue Resource Allocation Job Specific]
- default Property Map
- optional resource requirements to run workers (blank for unbounded allocations)
- job
Specifics List<Property Map>
DestinationS3GlueResourceAllocationDefault, DestinationS3GlueResourceAllocationDefaultArgs
- 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
DestinationS3GlueResourceAllocationJobSpecific, DestinationS3GlueResourceAllocationJobSpecificArgs
- 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 DestinationS3Glue 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 DestinationS3Glue 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 DestinationS3Glue 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 DestinationS3Glue 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 DestinationS3Glue 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)
DestinationS3GlueResourceAllocationJobSpecificResourceRequirements, DestinationS3GlueResourceAllocationJobSpecificResourceRequirementsArgs
- 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/destinationS3Glue:DestinationS3Glue my_airbyte_destination_s3_glue ""
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.