From 77d20000d9d816f4a7fe72671f7a93385cc03c4c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Edgar=20Ram=C3=ADrez=20Mondrag=C3=B3n?= Date: Wed, 27 Nov 2024 10:48:41 -0600 Subject: [PATCH] Use config titles (new SDK feature) --- target_redshift/target.py | 3 +++ 1 file changed, 3 insertions(+) diff --git a/target_redshift/target.py b/target_redshift/target.py index 97e9a11..c8de7c3 100644 --- a/target_redshift/target.py +++ b/target_redshift/target.py @@ -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", @@ -107,6 +108,7 @@ 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", @@ -114,6 +116,7 @@ def __init__( 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",