Show / Hide Table of Contents

Class CfnConnectorProfile.SAPODataConnectorProfileCredentialsProperty

The connector-specific profile credentials required when using SAPOData.

Inheritance
object
CfnConnectorProfile.SAPODataConnectorProfileCredentialsProperty
Implements
CfnConnectorProfile.ISAPODataConnectorProfileCredentialsProperty
Inherited Members
object.GetType()
object.MemberwiseClone()
object.ToString()
object.Equals(object)
object.Equals(object, object)
object.ReferenceEquals(object, object)
object.GetHashCode()
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

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-appflow-connectorprofile-sapodataconnectorprofilecredentials.html

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

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-appflow-connectorprofile-sapodataconnectorprofilecredentials.html

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

object

Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-appflow-connectorprofile-sapodataconnectorprofilecredentials.html#cfn-appflow-connectorprofile-sapodataconnectorprofilecredentials-basicauthcredentials

OAuthCredentials

The SAPOData OAuth type authentication credentials.

public object? OAuthCredentials { get; set; }
Property Value

object

Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-appflow-connectorprofile-sapodataconnectorprofilecredentials.html#cfn-appflow-connectorprofile-sapodataconnectorprofilecredentials-oauthcredentials

Implements

CfnConnectorProfile.ISAPODataConnectorProfileCredentialsProperty
Back to top Generated by DocFX