interface CustomAuthCredentialsProperty
| Language | Type name | 
|---|---|
|  .NET | Amazon.CDK.AWS.AppFlow.CfnConnectorProfile.CustomAuthCredentialsProperty | 
|  Go | github.com/aws/aws-cdk-go/awscdk/v2/awsappflow#CfnConnectorProfile_CustomAuthCredentialsProperty | 
|  Java | software.amazon.awscdk.services.appflow.CfnConnectorProfile.CustomAuthCredentialsProperty | 
|  Python | aws_cdk.aws_appflow.CfnConnectorProfile.CustomAuthCredentialsProperty | 
|  TypeScript | aws-cdk-lib»aws_appflow»CfnConnectorProfile»CustomAuthCredentialsProperty | 
The custom credentials required for custom authentication.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { aws_appflow as appflow } from 'aws-cdk-lib';
const customAuthCredentialsProperty: appflow.CfnConnectorProfile.CustomAuthCredentialsProperty = {
  customAuthenticationType: 'customAuthenticationType',
  // the properties below are optional
  credentialsMap: {
    credentialsMapKey: 'credentialsMap',
  },
};
Properties
| Name | Type | Description | 
|---|---|---|
| custom | string | The custom authentication type that the connector uses. | 
| credentials | { [string]: string } | IResolvable | A map that holds custom authentication credentials. | 
customAuthenticationType
Type:
string
The custom authentication type that the connector uses.
credentialsMap?
Type:
{ [string]: string } | IResolvable
(optional)
A map that holds custom authentication credentials.
