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