Class: Aws::Appflow::Types::SalesforceMetadata

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

Overview

The connector metadata specific to Salesforce.

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#data_transfer_apisArray<String>

The Salesforce APIs that you can have Amazon AppFlow use when your flows transfers data to or from Salesforce.

Returns:

  • (Array<String>)


4585
4586
4587
4588
4589
4590
4591
# File 'lib/aws-sdk-appflow/types.rb', line 4585

class SalesforceMetadata < Struct.new(
  :o_auth_scopes,
  :data_transfer_apis,
  :oauth2_grant_types_supported)
  SENSITIVE = []
  include Aws::Structure
end

#o_auth_scopesArray<String>

The desired authorization scope for the Salesforce account.

Returns:

  • (Array<String>)


4585
4586
4587
4588
4589
4590
4591
# File 'lib/aws-sdk-appflow/types.rb', line 4585

class SalesforceMetadata < Struct.new(
  :o_auth_scopes,
  :data_transfer_apis,
  :oauth2_grant_types_supported)
  SENSITIVE = []
  include Aws::Structure
end

#oauth2_grant_types_supportedArray<String>

The OAuth 2.0 grant types that Amazon AppFlow can use when it requests an access token from Salesforce. Amazon AppFlow requires an access token each time it attempts to access your Salesforce records.

AUTHORIZATION_CODE

: Amazon AppFlow passes an authorization code when it requests the

access token from Salesforce. Amazon AppFlow receives the
authorization code from Salesforce after you log in to your
Salesforce account and authorize Amazon AppFlow to access your
records.

JWT_BEARER

: Amazon AppFlow passes a JSON web token (JWT) when it requests the

access token from Salesforce. You provide the JWT to Amazon
AppFlow when you define the connection to your Salesforce account.
When you use this grant type, you don't need to log in to your
Salesforce account to authorize Amazon AppFlow to access your
records.

<note markdown=“1”> The CLIENT_CREDENTIALS value is not supported for Salesforce.

</note>

Returns:

  • (Array<String>)


4585
4586
4587
4588
4589
4590
4591
# File 'lib/aws-sdk-appflow/types.rb', line 4585

class SalesforceMetadata < Struct.new(
  :o_auth_scopes,
  :data_transfer_apis,
  :oauth2_grant_types_supported)
  SENSITIVE = []
  include Aws::Structure
end