interface CustomAuthCredentialsProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.AppFlow.Mixins.CfnConnectorProfilePropsMixin.CustomAuthCredentialsProperty |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awsappflow/mixins#CfnConnectorProfilePropsMixin_CustomAuthCredentialsProperty |
Java | software.amazon.awscdk.mixins.preview.services.appflow.mixins.CfnConnectorProfilePropsMixin.CustomAuthCredentialsProperty |
Python | aws_cdk.mixins_preview.aws_appflow.mixins.CfnConnectorProfilePropsMixin.CustomAuthCredentialsProperty |
TypeScript | @aws-cdk/mixins-preview » aws_appflow » mixins » CfnConnectorProfilePropsMixin » 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 { mixins as appflow_mixins } from '@aws-cdk/mixins-preview/aws-appflow';
const customAuthCredentialsProperty: appflow_mixins.CfnConnectorProfilePropsMixin.CustomAuthCredentialsProperty = {
credentialsMap: {
credentialsMapKey: 'credentialsMap',
},
customAuthenticationType: 'customAuthenticationType',
};
Properties
| Name | Type | Description |
|---|---|---|
| credentials | { [string]: string } | IResolvable | A map that holds custom authentication credentials. |
| custom | string | The custom authentication type that the connector uses. |
credentialsMap?
Type:
{ [string]: string } | IResolvable
(optional)
A map that holds custom authentication credentials.
customAuthenticationType?
Type:
string
(optional)
The custom authentication type that the connector uses.

.NET
Go
Java
Python
TypeScript