public static interface CfnConnectorProfile.ZendeskConnectorProfileCredentialsProperty
Example:
// The code below shows an example of how to instantiate this type. // The values are placeholders you should change. import software.amazon.awscdk.services.appflow.*; ZendeskConnectorProfileCredentialsProperty zendeskConnectorProfileCredentialsProperty = ZendeskConnectorProfileCredentialsProperty.builder() .clientId("clientId") .clientSecret("clientSecret") // the properties below are optional .accessToken("accessToken") .connectorOAuthRequest(ConnectorOAuthRequestProperty.builder() .authCode("authCode") .redirectUri("redirectUri") .build()) .build();
Modifier and Type | Interface and Description |
---|---|
static class |
CfnConnectorProfile.ZendeskConnectorProfileCredentialsProperty.Builder
|
static class |
CfnConnectorProfile.ZendeskConnectorProfileCredentialsProperty.Jsii$Proxy
An implementation for
CfnConnectorProfile.ZendeskConnectorProfileCredentialsProperty |
Modifier and Type | Method and Description |
---|---|
static CfnConnectorProfile.ZendeskConnectorProfileCredentialsProperty.Builder |
builder() |
default java.lang.String |
getAccessToken()
The credentials used to access protected Zendesk resources.
|
java.lang.String |
getClientId()
The identifier for the desired client.
|
java.lang.String |
getClientSecret()
The client secret used by the OAuth client to authenticate to the authorization server.
|
default java.lang.Object |
getConnectorOAuthRequest()
Used by select connectors for which the OAuth workflow is supported, such as Salesforce, Google Analytics, Marketo, Zendesk, and Slack.
|
java.lang.String getClientId()
java.lang.String getClientSecret()
default java.lang.String getAccessToken()
default java.lang.Object getConnectorOAuthRequest()