interface OAuthParametersProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.CfnPropertyMixins.AWS.QuickSight.CfnDataSourcePropsMixin.OAuthParametersProperty |
Go | github.com/aws/aws-cdk-go/awscdkcfnpropertymixins/v2/awsquicksight#CfnDataSourcePropsMixin_OAuthParametersProperty |
Java | software.amazon.awscdk.cfnpropertymixins.services.quicksight.CfnDataSourcePropsMixin.OAuthParametersProperty |
Python | aws_cdk.cfn_property_mixins.aws_quicksight.CfnDataSourcePropsMixin.OAuthParametersProperty |
TypeScript | @aws-cdk/cfn-property-mixins » aws_quicksight » 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 { aws_quicksight as quicksight } from '@aws-cdk/cfn-property-mixins';
const oAuthParametersProperty: quicksight.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