Interface CfnDataSource.RedshiftIAMParametersProperty

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

@Stability(Stable) public static interface CfnDataSource.RedshiftIAMParametersProperty extends software.amazon.jsii.JsiiSerializable
A structure that grants Amazon QuickSight access to your cluster and make a call to the redshift:GetClusterCredentials API.

For more information on the redshift:GetClusterCredentials API, see GetClusterCredentials .

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.quicksight.*;
 RedshiftIAMParametersProperty redshiftIAMParametersProperty = RedshiftIAMParametersProperty.builder()
         .roleArn("roleArn")
         // the properties below are optional
         .autoCreateDatabaseUser(false)
         .databaseGroups(List.of("databaseGroups"))
         .databaseUser("databaseUser")
         .build();
 

See Also: