aws-cdk-lib.aws_appflow.CfnConnectorProfile.CustomConnectorProfilePropertiesProperty

interface CustomConnectorProfilePropertiesProperty

LanguageType name
.NETAmazon.CDK.AWS.AppFlow.CfnConnectorProfile.CustomConnectorProfilePropertiesProperty
Gogithub.com/aws/aws-cdk-go/awscdk/v2/awsappflow#CfnConnectorProfile_CustomConnectorProfilePropertiesProperty
Javasoftware.amazon.awscdk.services.appflow.CfnConnectorProfile.CustomConnectorProfilePropertiesProperty
Pythonaws_cdk.aws_appflow.CfnConnectorProfile.CustomConnectorProfilePropertiesProperty
TypeScript aws-cdk-lib » aws_appflow » CfnConnectorProfile » 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 { aws_appflow as appflow } from 'aws-cdk-lib';
const customConnectorProfilePropertiesProperty: appflow.CfnConnectorProfile.CustomConnectorProfilePropertiesProperty = {
  oAuth2Properties: {
    oAuth2GrantType: 'oAuth2GrantType',
    tokenUrl: 'tokenUrl',
    tokenUrlCustomProperties: {
      tokenUrlCustomPropertiesKey: 'tokenUrlCustomProperties',
    },
  },
  profileProperties: {
    profilePropertiesKey: 'profileProperties',
  },
};

Properties

NameTypeDescription
oAuth2Properties?IResolvable | OAuth2PropertiesPropertyThe OAuth 2.0 properties required for OAuth 2.0 authentication.
profileProperties?IResolvable | { [string]: string }A map of properties that are required to create a profile for the custom connector.

oAuth2Properties?

Type: IResolvable | OAuth2PropertiesProperty (optional)

The OAuth 2.0 properties required for OAuth 2.0 authentication.


profileProperties?

Type: IResolvable | { [string]: string } (optional)

A map of properties that are required to create a profile for the custom connector.