Interface CfnDataSourcePropsMixin.OAuthParametersProperty
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnDataSourcePropsMixin.OAuthParametersProperty.Jsii$Proxy
- Enclosing class:
CfnDataSourcePropsMixin
@Stability(Stable)
public static interface CfnDataSourcePropsMixin.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.cfnpropertymixins.services.quicksight.*;
OAuthParametersProperty oAuthParametersProperty = OAuthParametersProperty.builder()
.identityProviderResourceUri("identityProviderResourceUri")
.identityProviderVpcConnectionProperties(VpcConnectionPropertiesProperty.builder()
.vpcConnectionArn("vpcConnectionArn")
.build())
.oAuthScope("oAuthScope")
.tokenProviderUrl("tokenProviderUrl")
.build();
- See Also:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forCfnDataSourcePropsMixin.OAuthParametersPropertystatic final classAn implementation forCfnDataSourcePropsMixin.OAuthParametersProperty -
Method Summary
Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getIdentityProviderResourceUri
The resource uri of the identity provider.- See Also:
-
getIdentityProviderVpcConnectionProperties
VPC connection properties.
.Returns union: either
IResolvableorCfnDataSourcePropsMixin.VpcConnectionPropertiesProperty- See Also:
-
getOAuthScope
The OAuth scope.- See Also:
-
getTokenProviderUrl
The token endpoint URL of the identity provider.- See Also:
-
builder
-