Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Use config titles (new SDK feature) #163

Open
wants to merge 1 commit into
base: main
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions target_redshift/target.py
Original file line number Diff line number Diff line change
Expand Up @@ -76,6 +76,7 @@ def __init__(
"If true, use temporary credentials "
"(https://docs.aws.amazon.com/redshift/latest/mgmt/generating-iam-credentials-cli-api.html)."
),
title="Enable IAM Authentication",
),
th.Property(
"cluster_identifier",
Expand Down Expand Up @@ -107,13 +108,15 @@ def __init__(
description=(
"Database name. Note if sqlalchemy_url is set this will be ignored."
),
title="Database Name",
),
th.Property(
"aws_redshift_copy_role_arn",
th.StringType,
secret=True, # Flag config as protected.
required=True,
description="Redshift copy role arn to use for the COPY command from s3",
title="AWS Redshift Copy Role ARN",
),
th.Property(
"s3_bucket",
Expand Down