interface CustomConnectorProfilePropertiesProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.AppFlow.Mixins.CfnConnectorProfilePropsMixin.CustomConnectorProfilePropertiesProperty |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awsappflow/mixins#CfnConnectorProfilePropsMixin_CustomConnectorProfilePropertiesProperty |
Java | software.amazon.awscdk.mixins.preview.services.appflow.mixins.CfnConnectorProfilePropsMixin.CustomConnectorProfilePropertiesProperty |
Python | aws_cdk.mixins_preview.aws_appflow.mixins.CfnConnectorProfilePropsMixin.CustomConnectorProfilePropertiesProperty |
TypeScript | @aws-cdk/mixins-preview » aws_appflow » mixins » CfnConnectorProfilePropsMixin » CustomConnectorProfilePropertiesProperty |
The profile properties required by the custom connector.
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 customConnectorProfilePropertiesProperty: appflow_mixins.CfnConnectorProfilePropsMixin.CustomConnectorProfilePropertiesProperty = {
oAuth2Properties: {
oAuth2GrantType: 'oAuth2GrantType',
tokenUrl: 'tokenUrl',
tokenUrlCustomProperties: {
tokenUrlCustomPropertiesKey: 'tokenUrlCustomProperties',
},
},
profileProperties: {
profilePropertiesKey: 'profileProperties',
},
};
Properties
| Name | Type | Description |
|---|---|---|
| o | IResolvable | OAuth2 | The OAuth 2.0 properties required for OAuth 2.0 authentication. |
| profile | { [string]: string } | IResolvable | A map of properties that are required to create a profile for the custom connector. |
oAuth2Properties?
Type:
IResolvable | OAuth2
(optional)
The OAuth 2.0 properties required for OAuth 2.0 authentication.
profileProperties?
Type:
{ [string]: string } | IResolvable
(optional)
A map of properties that are required to create a profile for the custom connector.

.NET
Go
Java
Python
TypeScript