Interface CfnDataSource.OAuthParametersProperty

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

@Stability(Stable) public static interface CfnDataSource.OAuthParametersProperty extends software.amazon.jsii.JsiiSerializable
An object that contains information needed to create a data source connection that uses OAuth client credentials.

This option is available for data source connections that are made with Snowflake and Starburst.

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.*;
 OAuthParametersProperty oAuthParametersProperty = OAuthParametersProperty.builder()
         .tokenProviderUrl("tokenProviderUrl")
         // the properties below are optional
         .identityProviderResourceUri("identityProviderResourceUri")
         .identityProviderVpcConnectionProperties(VpcConnectionPropertiesProperty.builder()
                 .vpcConnectionArn("vpcConnectionArn")
                 .build())
         .oAuthScope("oAuthScope")
         .build();
 

See Also: