interface AuthorizationCodeGrantMetadataProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.QuickSight.CfnActionConnector.AuthorizationCodeGrantMetadataProperty |
Go | github.com/aws/aws-cdk-go/awscdk/v2/awsquicksight#CfnActionConnector_AuthorizationCodeGrantMetadataProperty |
Java | software.amazon.awscdk.services.quicksight.CfnActionConnector.AuthorizationCodeGrantMetadataProperty |
Python | aws_cdk.aws_quicksight.CfnActionConnector.AuthorizationCodeGrantMetadataProperty |
TypeScript | aws-cdk-lib » aws_quicksight » CfnActionConnector » AuthorizationCodeGrantMetadataProperty |
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 authorizationCodeGrantMetadataProperty: quicksight.CfnActionConnector.AuthorizationCodeGrantMetadataProperty = {
baseEndpoint: 'baseEndpoint',
redirectUrl: 'redirectUrl',
// the properties below are optional
authorizationCodeGrantCredentialsDetails: {
authorizationCodeGrantDetails: {
authorizationEndpoint: 'authorizationEndpoint',
clientId: 'clientId',
clientSecret: 'clientSecret',
tokenEndpoint: 'tokenEndpoint',
},
},
authorizationCodeGrantCredentialsSource: 'authorizationCodeGrantCredentialsSource',
};
Properties
| Name | Type | Description |
|---|---|---|
| base | string | |
| redirect | string | |
| authorization | IResolvable | Authorization | |
| authorization | string |
baseEndpoint
Type:
string
redirectUrl
Type:
string
authorizationCodeGrantCredentialsDetails?
Type:
IResolvable | Authorization
(optional)
authorizationCodeGrantCredentialsSource?
Type:
string
(optional)

.NET
Go
Java
Python
TypeScript