interface AuthorizationCodeGrantDetailsProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.QuickSight.CfnActionConnector.AuthorizationCodeGrantDetailsProperty |
Go | github.com/aws/aws-cdk-go/awscdk/v2/awsquicksight#CfnActionConnector_AuthorizationCodeGrantDetailsProperty |
Java | software.amazon.awscdk.services.quicksight.CfnActionConnector.AuthorizationCodeGrantDetailsProperty |
Python | aws_cdk.aws_quicksight.CfnActionConnector.AuthorizationCodeGrantDetailsProperty |
TypeScript | aws-cdk-lib » aws_quicksight » CfnActionConnector » AuthorizationCodeGrantDetailsProperty |
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-lib';
const authorizationCodeGrantDetailsProperty: quicksight.CfnActionConnector.AuthorizationCodeGrantDetailsProperty = {
authorizationEndpoint: 'authorizationEndpoint',
clientId: 'clientId',
clientSecret: 'clientSecret',
tokenEndpoint: 'tokenEndpoint',
};
Properties
| Name | Type | Description |
|---|---|---|
| authorization | string | |
| client | string | |
| client | string | |
| token | string |
authorizationEndpoint
Type:
string
clientId
Type:
string
clientSecret
Type:
string
tokenEndpoint
Type:
string

.NET
Go
Java
Python
TypeScript