Pipe
Examples
Python
pipe = Pipe(
name="some_pipe",
as_="COPY INTO some_table FROM @%some_stage",
owner="SYSADMIN",
auto_ingest=True,
error_integration="some_integration",
aws_sns_topic="some_topic",
integration="some_integration",
comment="This is a sample pipe"
)YAML
pipes:
- name: some_pipe
as_: "COPY INTO some_table FROM @%some_stage"
owner: SYSADMIN
auto_ingest: true
error_integration: some_integration
aws_sns_topic: some_topic
integration: some_integration
comment: "This is a sample pipe"Fields
Last updated