Skip to content

Commit

Permalink
Merge pull request #163 from edgarrmondragon/config-titles
Browse files Browse the repository at this point in the history
Use config titles (new SDK feature)
  • Loading branch information
tobiascadee authored Dec 3, 2024
2 parents eb7a814 + 77d2000 commit 9f77600
Showing 1 changed file with 3 additions and 0 deletions.
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

0 comments on commit 9f77600

Please sign in to comment.