aws-cdk-lib.aws_appflow.CfnConnectorProfile.OAuthPropertiesProperty

interface OAuthPropertiesProperty

LanguageType name
.NETAmazon.CDK.AWS.AppFlow.CfnConnectorProfile.OAuthPropertiesProperty
Gogithub.com/aws/aws-cdk-go/awscdk/v2/awsappflow#CfnConnectorProfile_OAuthPropertiesProperty
Javasoftware.amazon.awscdk.services.appflow.CfnConnectorProfile.OAuthPropertiesProperty
Pythonaws_cdk.aws_appflow.CfnConnectorProfile.OAuthPropertiesProperty
TypeScript aws-cdk-lib » aws_appflow » CfnConnectorProfile » OAuthPropertiesProperty

The OAuth properties required for OAuth type 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-lib';
const oAuthPropertiesProperty: appflow.CfnConnectorProfile.OAuthPropertiesProperty = {
  authCodeUrl: 'authCodeUrl',
  oAuthScopes: ['oAuthScopes'],
  tokenUrl: 'tokenUrl',
};

Properties

NameTypeDescription
authCodeUrl?stringThe authorization code url required to redirect to SAP Login Page to fetch authorization code for OAuth type authentication.
oAuthScopes?string[]The OAuth scopes required for OAuth type authentication.
tokenUrl?stringThe token url required to fetch access/refresh tokens using authorization code and also to refresh expired access token using refresh token.

authCodeUrl?

Type: string (optional)

The authorization code url required to redirect to SAP Login Page to fetch authorization code for OAuth type authentication.


oAuthScopes?

Type: string[] (optional)

The OAuth scopes required for OAuth type authentication.


tokenUrl?

Type: string (optional)

The token url required to fetch access/refresh tokens using authorization code and also to refresh expired access token using refresh token.