You are viewing documentation for version 2 of the AWS SDK for Ruby. Version 3 documentation can be found here.

Class: Aws::Appflow::Types::SalesforceConnectorProfileCredentials

Inherits:
Struct
  • Object
show all
Defined in:
(unknown)

Overview

Note:

When passing SalesforceConnectorProfileCredentials as input to an Aws::Client method, you can use a vanilla Hash:

{
  access_token: "AccessToken",
  refresh_token: "RefreshToken",
  o_auth_request: {
    auth_code: "AuthCode",
    redirect_uri: "RedirectUri",
  },
  client_credentials_arn: "ClientCredentialsArn",
}

The connector-specific profile credentials required when using Salesforce.

Returned by:

Instance Attribute Summary collapse

Instance Attribute Details

#access_tokenString

The credentials used to access protected Salesforce resources.

Returns:

  • (String)

    The credentials used to access protected Salesforce resources.

#client_credentials_arnString

The secret manager ARN, which contains the client ID and client secret of the connected app.

Returns:

  • (String)

    The secret manager ARN, which contains the client ID and client secret of the connected app.

#o_auth_requestTypes::ConnectorOAuthRequest

The OAuth requirement needed to request security tokens from the connector endpoint.

Returns:

#refresh_tokenString

The credentials used to acquire new access tokens.

Returns:

  • (String)

    The credentials used to acquire new access tokens.