Note: This release is in preview. Features described here don’t become generally available until the latest general availability date that Salesforce announces for this release. Before then, and where features are noted as beta, pilot, or developer preview, we can’t guarantee general availability within any particular time frame or at all. Make your purchase decisions only on the basis of generally available products and features.
DataConnectorS3
File Suffix and Directory Location
DataConnectorS3 components have the suffix s3DataConnector and are stored in the s3DataConnectors folder.
Version
DataConnectorS3 components are available in API version 50.0 and later.
Special Access Rules
You need the Salesforce CustomizeApplication permission to access this object.
Fields
| Field Name | Field Type | Description |
|---|---|---|
| fileNameWildcard | string | Optional. File or Wildcard (*) to be used when finding files. |
| importFromDirectory | string | Required. Path from the directory to where files are located. |
| masterLabel | string | Required. The UI name for the S3 data connector. |
| s3BucketName | string | Optional. The Amazon S3 Name of the Bucket. |
Declarative Metadata Sample Definition
The following is an example of a DataConnectorS3 component.
1<?xml version="1.0" encoding="UTF-8"?>
2 <DataConnectorS3 xmlns="http://soap.sforce.com/2006/04/metadata">
3 <fileNameWildcard>*.csv</fileNameWildcard>
4 <importFromDirectory>c360-subset-lheader/</importFromDirectory>
5 <masterLabel>Person</masterLabel>
6 <s3BucketName>bucketeer-aa32faea-8431-4635-8a1d-b323a2d66c7c</s3BucketName>
7 </DataConnectorS3>