Class: Aws::Appflow::Types::PardotConnectorProfileCredentials

Inherits:
Struct
  • Object
show all
Defined in:
gems/aws-sdk-appflow/lib/aws-sdk-appflow/types.rb

Overview

The connector-specific profile credentials required when using Salesforce Pardot.

Constant Summary collapse

SENSITIVE =
[:access_token, :client_credentials_arn]

Instance Attribute Summary collapse

Instance Attribute Details

#access_tokenString

The credentials used to access protected Salesforce Pardot resources.

Returns:

  • (String)


3536
3537
3538
3539
3540
3541
3542
3543
# File 'gems/aws-sdk-appflow/lib/aws-sdk-appflow/types.rb', line 3536

class PardotConnectorProfileCredentials < Struct.new(
  :access_token,
  :refresh_token,
  :o_auth_request,
  :client_credentials_arn)
  SENSITIVE = [:access_token, :client_credentials_arn]
  include Aws::Structure
end

#client_credentials_arnString

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

Returns:

  • (String)


3536
3537
3538
3539
3540
3541
3542
3543
# File 'gems/aws-sdk-appflow/lib/aws-sdk-appflow/types.rb', line 3536

class PardotConnectorProfileCredentials < Struct.new(
  :access_token,
  :refresh_token,
  :o_auth_request,
  :client_credentials_arn)
  SENSITIVE = [:access_token, :client_credentials_arn]
  include Aws::Structure
end

#o_auth_requestTypes::ConnectorOAuthRequest

Used by select connectors for which the OAuth workflow is supported, such as Salesforce, Google Analytics, Marketo, Zendesk, and Slack.



3536
3537
3538
3539
3540
3541
3542
3543
# File 'gems/aws-sdk-appflow/lib/aws-sdk-appflow/types.rb', line 3536

class PardotConnectorProfileCredentials < Struct.new(
  :access_token,
  :refresh_token,
  :o_auth_request,
  :client_credentials_arn)
  SENSITIVE = [:access_token, :client_credentials_arn]
  include Aws::Structure
end

#refresh_tokenString

The credentials used to acquire new access tokens.

Returns:

  • (String)


3536
3537
3538
3539
3540
3541
3542
3543
# File 'gems/aws-sdk-appflow/lib/aws-sdk-appflow/types.rb', line 3536

class PardotConnectorProfileCredentials < Struct.new(
  :access_token,
  :refresh_token,
  :o_auth_request,
  :client_credentials_arn)
  SENSITIVE = [:access_token, :client_credentials_arn]
  include Aws::Structure
end