Interface CfnDataSourcePropsMixin.RedshiftIAMParametersProperty

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

@Stability(Stable) public static interface CfnDataSourcePropsMixin.RedshiftIAMParametersProperty extends software.amazon.jsii.JsiiSerializable
A structure that grants Quick Sight 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.cfnpropertymixins.services.quicksight.*;
 RedshiftIAMParametersProperty redshiftIAMParametersProperty = RedshiftIAMParametersProperty.builder()
         .autoCreateDatabaseUser(false)
         .databaseGroups(List.of("databaseGroups"))
         .databaseUser("databaseUser")
         .roleArn("roleArn")
         .build();
 

See Also: