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
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forCfnDataSource.OAuthParametersPropertystatic final classAn 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.
.Returns union: either
IResolvableorCfnDataSource.VpcConnectionPropertiesProperty- See Also:
-
getOAuthScope
The OAuth scope.- See Also:
-
builder
-