Create Security Configuration
| glue_create_security_configuration | R Documentation | 
Creates a new security configuration¶
Description¶
Creates a new security configuration. A security configuration is a set of security properties that can be used by Glue. You can use a security configuration to encrypt data at rest. For information about using security configurations in Glue, see Encrypting Data Written by Crawlers, Jobs, and Development Endpoints.
Usage¶
glue_create_security_configuration(Name, EncryptionConfiguration)
Arguments¶
Name | 
[required] The name for the new security configuration.  | 
EncryptionConfiguration | 
[required] The encryption configuration for the new security configuration.  | 
Value¶
A list with the following syntax:
list(
  Name = "string",
  CreatedTimestamp = as.POSIXct(
    "2015-01-01"
  )
)
Request syntax¶
svc$create_security_configuration(
  Name = "string",
  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"
    ),
    DataQualityEncryption = list(
      DataQualityEncryptionMode = "DISABLED"|"SSE-KMS",
      KmsKeyArn = "string"
    )
  )
)