Interface CfnConnectorProfile.RedshiftConnectorProfilePropertiesProperty

All Superinterfaces:
software.amazon.jsii.JsiiSerializable
All Known Implementing Classes:
CfnConnectorProfile.RedshiftConnectorProfilePropertiesProperty.Jsii$Proxy
Enclosing class:
CfnConnectorProfile

@Stability(Stable) public static interface CfnConnectorProfile.RedshiftConnectorProfilePropertiesProperty extends software.amazon.jsii.JsiiSerializable
The connector-specific profile properties when using Amazon Redshift.

Example:

 // The code below shows an example of how to instantiate this type.
 // The values are placeholders you should change.
 import software.amazon.awscdk.services.appflow.*;
 RedshiftConnectorProfilePropertiesProperty redshiftConnectorProfilePropertiesProperty = RedshiftConnectorProfilePropertiesProperty.builder()
         .bucketName("bucketName")
         .roleArn("roleArn")
         // the properties below are optional
         .bucketPrefix("bucketPrefix")
         .clusterIdentifier("clusterIdentifier")
         .dataApiRoleArn("dataApiRoleArn")
         .databaseName("databaseName")
         .databaseUrl("databaseUrl")
         .isRedshiftServerless(false)
         .workgroupName("workgroupName")
         .build();
 

See Also: