Update Data Lake
securitylake_update_data_lake | R Documentation |
Specifies where to store your security data and for how long¶
Description¶
Specifies where to store your security data and for how long. You can add a rollup Region to consolidate data from multiple Amazon Web Services Regions.
Usage¶
Arguments¶
configurations
[required] Specify the Region or Regions that will contribute data to the rollup region.
metaStoreManagerRoleArn
The Amazon Resource Name (ARN) used to create and update the Glue table. This table contains partitions generated by the ingestion and normalization of Amazon Web Services log sources and custom sources.
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"
)
)
)
)
Request syntax¶
svc$update_data_lake(
configurations = list(
list(
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"
)
)
),
metaStoreManagerRoleArn = "string"
)