interface OAuthPropertiesProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.AppFlow.Mixins.CfnConnectorProfilePropsMixin.OAuthPropertiesProperty |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awsappflow/mixins#CfnConnectorProfilePropsMixin_OAuthPropertiesProperty |
Java | software.amazon.awscdk.mixins.preview.services.appflow.mixins.CfnConnectorProfilePropsMixin.OAuthPropertiesProperty |
Python | aws_cdk.mixins_preview.aws_appflow.mixins.CfnConnectorProfilePropsMixin.OAuthPropertiesProperty |
TypeScript | @aws-cdk/mixins-preview » aws_appflow » mixins » CfnConnectorProfilePropsMixin » 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 { mixins as appflow_mixins } from '@aws-cdk/mixins-preview/aws-appflow';
const oAuthPropertiesProperty: appflow_mixins.CfnConnectorProfilePropsMixin.OAuthPropertiesProperty = {
authCodeUrl: 'authCodeUrl',
oAuthScopes: ['oAuthScopes'],
tokenUrl: 'tokenUrl',
};
Properties
| Name | Type | Description |
|---|---|---|
| auth | string | The authorization code url required to redirect to SAP Login Page to fetch authorization code for OAuth type authentication. |
| o | string[] | The OAuth scopes required for OAuth type authentication. |
| token | string | The 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.

.NET
Go
Java
Python
TypeScript