Class: Aws::Appflow::Types::SalesforceMetadata
- Inherits:
-
Struct
- Object
- Struct
- Aws::Appflow::Types::SalesforceMetadata
- Defined in:
- gems/aws-sdk-appflow/lib/aws-sdk-appflow/types.rb
Overview
The connector metadata specific to Salesforce.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#data_transfer_apis ⇒ Array<String>
The Salesforce APIs that you can have Amazon AppFlow use when your flows transfers data to or from Salesforce.
-
#o_auth_scopes ⇒ Array<String>
The desired authorization scope for the Salesforce account.
-
#oauth2_grant_types_supported ⇒ Array<String>
The OAuth 2.0 grant types that Amazon AppFlow can use when it requests an access token from Salesforce.
Instance Attribute Details
#data_transfer_apis ⇒ Array<String>
The Salesforce APIs that you can have Amazon AppFlow use when your flows transfers data to or from Salesforce.
4585 4586 4587 4588 4589 4590 4591 |
# File 'gems/aws-sdk-appflow/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_scopes ⇒ Array<String>
The desired authorization scope for the Salesforce account.
4585 4586 4587 4588 4589 4590 4591 |
# File 'gems/aws-sdk-appflow/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_supported ⇒ Array<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.
4585 4586 4587 4588 4589 4590 4591 |
# File 'gems/aws-sdk-appflow/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 |