interface ClientCredentialsGrantMetadataProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.QuickSight.CfnActionConnector.ClientCredentialsGrantMetadataProperty |
Go | github.com/aws/aws-cdk-go/awscdk/v2/awsquicksight#CfnActionConnector_ClientCredentialsGrantMetadataProperty |
Java | software.amazon.awscdk.services.quicksight.CfnActionConnector.ClientCredentialsGrantMetadataProperty |
Python | aws_cdk.aws_quicksight.CfnActionConnector.ClientCredentialsGrantMetadataProperty |
TypeScript | aws-cdk-lib » aws_quicksight » CfnActionConnector » ClientCredentialsGrantMetadataProperty |
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 clientCredentialsGrantMetadataProperty: quicksight.CfnActionConnector.ClientCredentialsGrantMetadataProperty = {
baseEndpoint: 'baseEndpoint',
// the properties below are optional
clientCredentialsDetails: {
clientCredentialsGrantDetails: {
clientId: 'clientId',
clientSecret: 'clientSecret',
tokenEndpoint: 'tokenEndpoint',
},
},
clientCredentialsSource: 'clientCredentialsSource',
};
Properties
| Name | Type | Description |
|---|---|---|
| base | string | |
| client | IResolvable | Client | |
| client | string |
baseEndpoint
Type:
string
clientCredentialsDetails?
Type:
IResolvable | Client
(optional)
clientCredentialsSource?
Type:
string
(optional)

.NET
Go
Java
Python
TypeScript