aws-cdk-lib.aws_appflow.CfnConnectorProfile.SAPODataConnectorProfileCredentialsProperty

interface SAPODataConnectorProfileCredentialsProperty

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

The connector-specific profile credentials required when using SAPOData.

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 sAPODataConnectorProfileCredentialsProperty: appflow.CfnConnectorProfile.SAPODataConnectorProfileCredentialsProperty = {
  basicAuthCredentials: {
    password: 'password',
    username: 'username',
  },
  oAuthCredentials: {
    accessToken: 'accessToken',
    clientId: 'clientId',
    clientSecret: 'clientSecret',
    connectorOAuthRequest: {
      authCode: 'authCode',
      redirectUri: 'redirectUri',
    },
    refreshToken: 'refreshToken',
  },
};

Properties

NameTypeDescription
basicAuthCredentials?IResolvable | BasicAuthCredentialsPropertyThe SAPOData basic authentication credentials.
oAuthCredentials?IResolvable | OAuthCredentialsPropertyThe SAPOData OAuth type authentication credentials.

basicAuthCredentials?

Type: IResolvable | BasicAuthCredentialsProperty (optional)

The SAPOData basic authentication credentials.


oAuthCredentials?

Type: IResolvable | OAuthCredentialsProperty (optional)

The SAPOData OAuth type authentication credentials.