interface OAuth2PropertiesProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.AppFlow.Mixins.CfnConnectorProfilePropsMixin.OAuth2PropertiesProperty |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awsappflow/mixins#CfnConnectorProfilePropsMixin_OAuth2PropertiesProperty |
Java | software.amazon.awscdk.mixins.preview.services.appflow.mixins.CfnConnectorProfilePropsMixin.OAuth2PropertiesProperty |
Python | aws_cdk.mixins_preview.aws_appflow.mixins.CfnConnectorProfilePropsMixin.OAuth2PropertiesProperty |
TypeScript | @aws-cdk/mixins-preview » aws_appflow » mixins » CfnConnectorProfilePropsMixin » OAuth2PropertiesProperty |
The OAuth 2.0 properties required for OAuth 2.0 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 oAuth2PropertiesProperty: appflow_mixins.CfnConnectorProfilePropsMixin.OAuth2PropertiesProperty = {
oAuth2GrantType: 'oAuth2GrantType',
tokenUrl: 'tokenUrl',
tokenUrlCustomProperties: {
tokenUrlCustomPropertiesKey: 'tokenUrlCustomProperties',
},
};
Properties
| Name | Type | Description |
|---|---|---|
| o | string | The OAuth 2.0 grant type used by connector for OAuth 2.0 authentication. |
| token | string | The token URL required for OAuth 2.0 authentication. |
| token | { [string]: string } | IResolvable | Associates your token URL with a map of properties that you define. |
oAuth2GrantType?
Type:
string
(optional)
The OAuth 2.0 grant type used by connector for OAuth 2.0 authentication.
tokenUrl?
Type:
string
(optional)
The token URL required for OAuth 2.0 authentication.
tokenUrlCustomProperties?
Type:
{ [string]: string } | IResolvable
(optional)
Associates your token URL with a map of properties that you define.
Use this parameter to provide any additional details that the connector requires to authenticate your request.

.NET
Go
Java
Python
TypeScript