interface CustomAuthCredentialsProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.AppFlow.CfnConnectorProfile.CustomAuthCredentialsProperty |
Java | software.amazon.awscdk.services.appflow.CfnConnectorProfile.CustomAuthCredentialsProperty |
Python | aws_cdk.aws_appflow.CfnConnectorProfile.CustomAuthCredentialsProperty |
TypeScript | @aws-cdk/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 * as appflow from '@aws-cdk/aws-appflow';
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 | IResolvable | { [string]: string } | A map that holds custom authentication credentials. |
customAuthenticationType
Type:
string
The custom authentication type that the connector uses.
credentialsMap?
Type:
IResolvable | { [string]: string }
(optional)
A map that holds custom authentication credentials.

.NET
Java
Python
TypeScript