Class: Aws::Appflow::Types::SalesforceConnectorProfileProperties
- Inherits:
-
Struct
- Object
- Struct
- Aws::Appflow::Types::SalesforceConnectorProfileProperties
- Defined in:
- gems/aws-sdk-appflow/lib/aws-sdk-appflow/types.rb
Overview
Note:
When making an API call, you may pass SalesforceConnectorProfileProperties data as a hash:
{
instance_url: "InstanceUrl",
is_sandbox_environment: false,
}
The connector-specific profile properties required when using Salesforce.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#instance_url ⇒ String
The location of the Salesforce resource.
-
#is_sandbox_environment ⇒ Boolean
Indicates whether the connector profile applies to a sandbox or production environment.
Instance Attribute Details
#instance_url ⇒ String
The location of the Salesforce resource.
5559 5560 5561 5562 5563 5564 |
# File 'gems/aws-sdk-appflow/lib/aws-sdk-appflow/types.rb', line 5559 class SalesforceConnectorProfileProperties < Struct.new( :instance_url, :is_sandbox_environment) SENSITIVE = [] include Aws::Structure end |
#is_sandbox_environment ⇒ Boolean
Indicates whether the connector profile applies to a sandbox or production environment.
5559 5560 5561 5562 5563 5564 |
# File 'gems/aws-sdk-appflow/lib/aws-sdk-appflow/types.rb', line 5559 class SalesforceConnectorProfileProperties < Struct.new( :instance_url, :is_sandbox_environment) SENSITIVE = [] include Aws::Structure end |