List Data Lakes
securitylake_list_data_lakes | R Documentation |
Retrieves the Amazon Security Lake configuration object for the specified Amazon Web Services Regions¶
Description¶
Retrieves the Amazon Security Lake configuration object for the specified Amazon Web Services Regions. You can use this operation to determine whether Security Lake is enabled for a Region.
Usage¶
Arguments¶
regions
The list of Regions where Security Lake is enabled.
Value¶
A list with the following syntax:
list(
dataLakes = list(
list(
createStatus = "INITIALIZED"|"PENDING"|"COMPLETED"|"FAILED",
dataLakeArn = "string",
encryptionConfiguration = list(
kmsKeyId = "string"
),
lifecycleConfiguration = list(
expiration = list(
days = 123
),
transitions = list(
list(
days = 123,
storageClass = "string"
)
)
),
region = "string",
replicationConfiguration = list(
regions = list(
"string"
),
roleArn = "string"
),
s3BucketArn = "string",
updateStatus = list(
exception = list(
code = "string",
reason = "string"
),
requestId = "string",
status = "INITIALIZED"|"PENDING"|"COMPLETED"|"FAILED"
)
)
)
)