interface CustomAuthCredentialsProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.CfnPropertyMixins.AWS.AppFlow.CfnConnectorProfilePropsMixin.CustomAuthCredentialsProperty |
Go | github.com/aws/aws-cdk-go/awscdkcfnpropertymixins/v2/awsappflow#CfnConnectorProfilePropsMixin_CustomAuthCredentialsProperty |
Java | software.amazon.awscdk.cfnpropertymixins.services.appflow.CfnConnectorProfilePropsMixin.CustomAuthCredentialsProperty |
Python | aws_cdk.cfn_property_mixins.aws_appflow.CfnConnectorProfilePropsMixin.CustomAuthCredentialsProperty |
TypeScript | @aws-cdk/cfn-property-mixins » aws_appflow » 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 { aws_appflow as appflow } from '@aws-cdk/cfn-property-mixins';
const customAuthCredentialsProperty: appflow.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