@Stability(value=Stable)
public static interface CfnConnectorProfile.SalesforceConnectorProfileCredentialsProperty
extends software.amazon.jsii.JsiiSerializable
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.*;
SalesforceConnectorProfileCredentialsProperty salesforceConnectorProfileCredentialsProperty = SalesforceConnectorProfileCredentialsProperty.builder()
.accessToken("accessToken")
.clientCredentialsArn("clientCredentialsArn")
.connectorOAuthRequest(ConnectorOAuthRequestProperty.builder()
.authCode("authCode")
.redirectUri("redirectUri")
.build())
.refreshToken("refreshToken")
.build();
| Modifier and Type | Interface and Description |
|---|---|
static class |
CfnConnectorProfile.SalesforceConnectorProfileCredentialsProperty.Builder
|
static class |
CfnConnectorProfile.SalesforceConnectorProfileCredentialsProperty.Jsii$Proxy
An implementation for
CfnConnectorProfile.SalesforceConnectorProfileCredentialsProperty |
| Modifier and Type | Method and Description |
|---|---|
static CfnConnectorProfile.SalesforceConnectorProfileCredentialsProperty.Builder |
builder() |
default String |
getAccessToken()
The credentials used to access protected Salesforce resources.
|
default String |
getClientCredentialsArn()
The secret manager ARN, which contains the client ID and client secret of the connected app.
|
default Object |
getConnectorOAuthRequest()
Used by select connectors for which the OAuth workflow is supported, such as Salesforce, Google Analytics, Marketo, Zendesk, and Slack.
|
default String |
getRefreshToken()
The credentials used to acquire new access tokens.
|
@Stability(value=Stable) @Nullable default String getAccessToken()
@Stability(value=Stable) @Nullable default String getClientCredentialsArn()
@Stability(value=Stable) @Nullable default Object getConnectorOAuthRequest()
@Stability(value=Stable) @Nullable default String getRefreshToken()
@Stability(value=Stable) static CfnConnectorProfile.SalesforceConnectorProfileCredentialsProperty.Builder builder()
Copyright © 2022. All rights reserved.