Get Data Export Configuration
| datazone_get_data_export_configuration | R Documentation |
Gets data export configuration details¶
Description¶
Gets data export configuration details.
Usage¶
datazone_get_data_export_configuration(domainIdentifier)
Arguments¶
domainIdentifier |
[required] The ID of the domain where you want to get the data export configuration details. |
Value¶
A list with the following syntax:
list(
isExportEnabled = TRUE|FALSE,
status = "COMPLETED"|"FAILED",
encryptionConfiguration = list(
kmsKeyArn = "string",
sseAlgorithm = "string"
),
s3TableBucketArn = "string",
createdAt = as.POSIXct(
"2015-01-01"
),
updatedAt = as.POSIXct(
"2015-01-01"
)
)
Request syntax¶
svc$get_data_export_configuration(
domainIdentifier = "string"
)