Class CfnConnectorProfilePropsMixin.ZendeskConnectorProfileCredentialsProperty
The connector-specific profile credentials required when using Zendesk.
Inherited Members
Namespace: Amazon.CDK.CfnPropertyMixins.AWS.AppFlow
Assembly: Amazon.CDK.CfnPropertyMixins.dll
Syntax (csharp)
public class CfnConnectorProfilePropsMixin.ZendeskConnectorProfileCredentialsProperty : CfnConnectorProfilePropsMixin.IZendeskConnectorProfileCredentialsProperty
Syntax (vb)
Public Class CfnConnectorProfilePropsMixin.ZendeskConnectorProfileCredentialsProperty Implements CfnConnectorProfilePropsMixin.IZendeskConnectorProfileCredentialsProperty
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 zendeskConnectorProfileCredentialsProperty = new ZendeskConnectorProfileCredentialsProperty {
AccessToken = "accessToken",
ClientId = "clientId",
ClientSecret = "clientSecret",
ConnectorOAuthRequest = new ConnectorOAuthRequestProperty {
AuthCode = "authCode",
RedirectUri = "redirectUri"
}
};
Synopsis
Constructors
| ZendeskConnectorProfileCredentialsProperty() | The connector-specific profile credentials required when using Zendesk. |
Properties
| AccessToken | The credentials used to access protected Zendesk resources. |
| ClientId | The identifier for the desired client. |
| ClientSecret | The client secret used by the OAuth client to authenticate to the authorization server. |
| ConnectorOAuthRequest | Used by select connectors for which the OAuth workflow is supported, such as Salesforce, Google Analytics, Marketo, Zendesk, and Slack. |
Constructors
ZendeskConnectorProfileCredentialsProperty()
The connector-specific profile credentials required when using Zendesk.
public ZendeskConnectorProfileCredentialsProperty()
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 zendeskConnectorProfileCredentialsProperty = new ZendeskConnectorProfileCredentialsProperty {
AccessToken = "accessToken",
ClientId = "clientId",
ClientSecret = "clientSecret",
ConnectorOAuthRequest = new ConnectorOAuthRequestProperty {
AuthCode = "authCode",
RedirectUri = "redirectUri"
}
};
Properties
AccessToken
The credentials used to access protected Zendesk resources.
public string? AccessToken { get; set; }
Property Value
Remarks
ClientId
The identifier for the desired client.
public string? ClientId { get; set; }
Property Value
Remarks
ClientSecret
The client secret used by the OAuth client to authenticate to the authorization server.
public string? ClientSecret { get; set; }
Property Value
Remarks
ConnectorOAuthRequest
Used by select connectors for which the OAuth workflow is supported, such as Salesforce, Google Analytics, Marketo, Zendesk, and Slack.
public object? ConnectorOAuthRequest { get; set; }
Property Value
Remarks
Type union: either IResolvable or CfnConnectorProfilePropsMixin.IConnectorOAuthRequestProperty