interface OAuthParametersProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.QuickSight.Mixins.CfnDataSourcePropsMixin.OAuthParametersProperty |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awsquicksight/mixins#CfnDataSourcePropsMixin_OAuthParametersProperty |
Java | software.amazon.awscdk.mixins.preview.services.quicksight.mixins.CfnDataSourcePropsMixin.OAuthParametersProperty |
Python | aws_cdk.mixins_preview.aws_quicksight.mixins.CfnDataSourcePropsMixin.OAuthParametersProperty |
TypeScript | @aws-cdk/mixins-preview » aws_quicksight » mixins » CfnDataSourcePropsMixin » OAuthParametersProperty |
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 { mixins as quicksight_mixins } from '@aws-cdk/mixins-preview/aws-quicksight';
const oAuthParametersProperty: quicksight_mixins.CfnDataSourcePropsMixin.OAuthParametersProperty = {
identityProviderResourceUri: 'identityProviderResourceUri',
identityProviderVpcConnectionProperties: {
vpcConnectionArn: 'vpcConnectionArn',
},
oAuthScope: 'oAuthScope',
tokenProviderUrl: 'tokenProviderUrl',
};
Properties
| Name | Type | Description |
|---|---|---|
| identity | string | The resource uri of the identity provider. |
| identity | IResolvable | Vpc | VPC connection properties. . |
| o | string | The OAuth scope. |
| token | string | The token endpoint URL of the identity provider. |
identityProviderResourceUri?
Type:
string
(optional)
The resource uri of the identity provider.
identityProviderVpcConnectionProperties?
Type:
IResolvable | Vpc
(optional)
<p>VPC connection properties.
.oAuthScope?
Type:
string
(optional)
The OAuth scope.
tokenProviderUrl?
Type:
string
(optional)
The token endpoint URL of the identity provider.

.NET
Go
Java
Python
TypeScript