Class CfnConnectorProfile.SAPODataConnectorProfileCredentialsProperty
The connector-specific profile credentials required when using SAPOData.
Inherited Members
Namespace: Amazon.CDK.AWS.AppFlow
Assembly: Amazon.CDK.Lib.dll
Syntax (csharp)
public class CfnConnectorProfile.SAPODataConnectorProfileCredentialsProperty : CfnConnectorProfile.ISAPODataConnectorProfileCredentialsProperty
Syntax (vb)
Public Class CfnConnectorProfile.SAPODataConnectorProfileCredentialsProperty Implements CfnConnectorProfile.ISAPODataConnectorProfileCredentialsProperty
Remarks
ExampleMetadata: fixture=_generated
Examples
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
using Amazon.CDK.AWS.AppFlow;
var sAPODataConnectorProfileCredentialsProperty = new SAPODataConnectorProfileCredentialsProperty {
BasicAuthCredentials = new BasicAuthCredentialsProperty {
Password = "password",
Username = "username"
},
OAuthCredentials = new OAuthCredentialsProperty {
AccessToken = "accessToken",
ClientId = "clientId",
ClientSecret = "clientSecret",
ConnectorOAuthRequest = new ConnectorOAuthRequestProperty {
AuthCode = "authCode",
RedirectUri = "redirectUri"
},
RefreshToken = "refreshToken"
}
};
Synopsis
Constructors
SAPODataConnectorProfileCredentialsProperty() | The connector-specific profile credentials required when using SAPOData. |
Properties
BasicAuthCredentials | The SAPOData basic authentication credentials. |
OAuthCredentials | The SAPOData OAuth type authentication credentials. |
Constructors
SAPODataConnectorProfileCredentialsProperty()
The connector-specific profile credentials required when using SAPOData.
public SAPODataConnectorProfileCredentialsProperty()
Remarks
ExampleMetadata: fixture=_generated
Examples
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
using Amazon.CDK.AWS.AppFlow;
var sAPODataConnectorProfileCredentialsProperty = new SAPODataConnectorProfileCredentialsProperty {
BasicAuthCredentials = new BasicAuthCredentialsProperty {
Password = "password",
Username = "username"
},
OAuthCredentials = new OAuthCredentialsProperty {
AccessToken = "accessToken",
ClientId = "clientId",
ClientSecret = "clientSecret",
ConnectorOAuthRequest = new ConnectorOAuthRequestProperty {
AuthCode = "authCode",
RedirectUri = "redirectUri"
},
RefreshToken = "refreshToken"
}
};
Properties
BasicAuthCredentials
The SAPOData basic authentication credentials.
public object? BasicAuthCredentials { get; set; }
Property Value
Remarks
OAuthCredentials
The SAPOData OAuth type authentication credentials.
public object? OAuthCredentials { get; set; }