Retrieves a list of all security configurations.
glue_get_security_configurations(MaxResults, NextToken)
A list with the following syntax:
list(
SecurityConfigurations = list(
list(
Name = "string",
CreatedTimeStamp = as.POSIXct(
"2015-01-01"
),
EncryptionConfiguration = list(
S3Encryption = list(
list(
S3EncryptionMode = "DISABLED"|"SSE-KMS"|"SSE-S3",
KmsKeyArn = "string"
)
),
CloudWatchEncryption = list(
CloudWatchEncryptionMode = "DISABLED"|"SSE-KMS",
KmsKeyArn = "string"
),
JobBookmarksEncryption = list(
JobBookmarksEncryptionMode = "DISABLED"|"CSE-KMS",
KmsKeyArn = "string"
)
)
)
),
NextToken = "string"
)
The maximum number of results to return.
A continuation token, if this is a continuation call.
svc$get_security_configurations(
MaxResults = 123,
NextToken = "string"
)