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:
-
Nested Class Summary
Modifier and TypeInterfaceDescriptionstatic final class
A builder forCfnDataSource.OAuthParametersProperty
static final class
An implementation forCfnDataSource.OAuthParametersProperty
-
Method Summary
Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getTokenProviderUrl
The token endpoint URL of the identity provider.- See Also:
-
getIdentityProviderResourceUri
The resource uri of the identity provider.- See Also:
-
getIdentityProviderVpcConnectionProperties
VPC connection properties.
.- See Also:
-
getOAuthScope
The OAuth scope.- See Also:
-
builder
-