Create Import Job
sesv2_create_import_job | R Documentation |
Creates an import job for a data destination¶
Description¶
Creates an import job for a data destination.
Usage¶
sesv2_create_import_job(ImportDestination, ImportDataSource)
Arguments¶
ImportDestination |
[required] The destination for the import job. |
ImportDataSource |
[required] The data source for the import job. |
Value¶
A list with the following syntax:
list(
JobId = "string"
)
Request syntax¶
svc$create_import_job(
ImportDestination = list(
SuppressionListDestination = list(
SuppressionListImportAction = "DELETE"|"PUT"
),
ContactListDestination = list(
ContactListName = "string",
ContactListImportAction = "DELETE"|"PUT"
)
),
ImportDataSource = list(
S3Url = "string",
DataFormat = "CSV"|"JSON"
)
)