interface AuthConfigProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.QuickSight.CfnActionConnector.AuthConfigProperty |
Go | github.com/aws/aws-cdk-go/awscdk/v2/awsquicksight#CfnActionConnector_AuthConfigProperty |
Java | software.amazon.awscdk.services.quicksight.CfnActionConnector.AuthConfigProperty |
Python | aws_cdk.aws_quicksight.CfnActionConnector.AuthConfigProperty |
TypeScript | aws-cdk-lib » aws_quicksight » CfnActionConnector » AuthConfigProperty |
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 authConfigProperty: quicksight.CfnActionConnector.AuthConfigProperty = {
authenticationMetadata: {
apiKeyConnectionMetadata: {
apiKey: 'apiKey',
baseEndpoint: 'baseEndpoint',
// the properties below are optional
email: 'email',
},
authorizationCodeGrantMetadata: {
baseEndpoint: 'baseEndpoint',
redirectUrl: 'redirectUrl',
// the properties below are optional
authorizationCodeGrantCredentialsDetails: {
authorizationCodeGrantDetails: {
authorizationEndpoint: 'authorizationEndpoint',
clientId: 'clientId',
clientSecret: 'clientSecret',
tokenEndpoint: 'tokenEndpoint',
},
},
authorizationCodeGrantCredentialsSource: 'authorizationCodeGrantCredentialsSource',
},
basicAuthConnectionMetadata: {
baseEndpoint: 'baseEndpoint',
password: 'password',
username: 'username',
},
clientCredentialsGrantMetadata: {
baseEndpoint: 'baseEndpoint',
// the properties below are optional
clientCredentialsDetails: {
clientCredentialsGrantDetails: {
clientId: 'clientId',
clientSecret: 'clientSecret',
tokenEndpoint: 'tokenEndpoint',
},
},
clientCredentialsSource: 'clientCredentialsSource',
},
iamConnectionMetadata: {
roleArn: 'roleArn',
},
noneConnectionMetadata: {
baseEndpoint: 'baseEndpoint',
},
},
authenticationType: 'authenticationType',
};
Properties
| Name | Type | Description |
|---|---|---|
| authentication | IResolvable | Authentication | |
| authentication | string |
authenticationMetadata
Type:
IResolvable | Authentication
authenticationType
Type:
string

.NET
Go
Java
Python
TypeScript