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

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.

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 resources.

Returns:

  • (String)


4015
4016
4017
4018
4019
4020
4021
4022
# File 'gems/aws-sdk-appflow/lib/aws-sdk-appflow/types.rb', line 4015

class SalesforceConnectorProfileCredentials < 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)


4015
4016
4017
4018
4019
4020
4021
4022
# File 'gems/aws-sdk-appflow/lib/aws-sdk-appflow/types.rb', line 4015

class SalesforceConnectorProfileCredentials < 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

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



4015
4016
4017
4018
4019
4020
4021
4022
# File 'gems/aws-sdk-appflow/lib/aws-sdk-appflow/types.rb', line 4015

class SalesforceConnectorProfileCredentials < 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)


4015
4016
4017
4018
4019
4020
4021
4022
# File 'gems/aws-sdk-appflow/lib/aws-sdk-appflow/types.rb', line 4015

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