Class CfnConnectorProfilePropsMixin.PardotConnectorProfileCredentialsProperty
The connector-specific profile credentials required when using Salesforce Pardot.
Inherited Members
Namespace: Amazon.CDK.CfnPropertyMixins.AWS.AppFlow
Assembly: Amazon.CDK.CfnPropertyMixins.dll
Syntax (csharp)
public class CfnConnectorProfilePropsMixin.PardotConnectorProfileCredentialsProperty : CfnConnectorProfilePropsMixin.IPardotConnectorProfileCredentialsProperty
Syntax (vb)
Public Class CfnConnectorProfilePropsMixin.PardotConnectorProfileCredentialsProperty Implements CfnConnectorProfilePropsMixin.IPardotConnectorProfileCredentialsProperty
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.CfnPropertyMixins.AWS.AppFlow;
var pardotConnectorProfileCredentialsProperty = new PardotConnectorProfileCredentialsProperty {
AccessToken = "accessToken",
ClientCredentialsArn = "clientCredentialsArn",
ConnectorOAuthRequest = new ConnectorOAuthRequestProperty {
AuthCode = "authCode",
RedirectUri = "redirectUri"
},
RefreshToken = "refreshToken"
};
Synopsis
Constructors
| PardotConnectorProfileCredentialsProperty() | The connector-specific profile credentials required when using Salesforce Pardot. |
Properties
| AccessToken | The credentials used to access protected Salesforce Pardot resources. |
| ClientCredentialsArn | The secret manager ARN, which contains the client ID and client secret of the connected app. |
| ConnectorOAuthRequest | The connector-specific profile credentials required when using Salesforce Pardot. |
| RefreshToken | The credentials used to acquire new access tokens. |
Constructors
PardotConnectorProfileCredentialsProperty()
The connector-specific profile credentials required when using Salesforce Pardot.
public PardotConnectorProfileCredentialsProperty()
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.CfnPropertyMixins.AWS.AppFlow;
var pardotConnectorProfileCredentialsProperty = new PardotConnectorProfileCredentialsProperty {
AccessToken = "accessToken",
ClientCredentialsArn = "clientCredentialsArn",
ConnectorOAuthRequest = new ConnectorOAuthRequestProperty {
AuthCode = "authCode",
RedirectUri = "redirectUri"
},
RefreshToken = "refreshToken"
};
Properties
AccessToken
The credentials used to access protected Salesforce Pardot resources.
public string? AccessToken { get; set; }
Property Value
Remarks
ClientCredentialsArn
The secret manager ARN, which contains the client ID and client secret of the connected app.
public string? ClientCredentialsArn { get; set; }
Property Value
Remarks
ConnectorOAuthRequest
The connector-specific profile credentials required when using Salesforce Pardot.
public object? ConnectorOAuthRequest { get; set; }
Property Value
Remarks
Type union: either IResolvable or CfnConnectorProfilePropsMixin.IConnectorOAuthRequestProperty
RefreshToken
The credentials used to acquire new access tokens.
public string? RefreshToken { get; set; }