S3TableIntegrationEncryption constructor

const S3TableIntegrationEncryption({
  1. Input<String?>? kmsKeyArn,
  2. required Input<String> sseAlgorithm,
})

Creates a new S3TableIntegrationEncryption. kmsKeyArn ARN of the KMS key to use for encryption. Required when sseAlgorithm is aws:kms. sseAlgorithm Server-side encryption algorithm. Valid values: AES256, aws:kms.

Implementation

const S3TableIntegrationEncryption({
  this.kmsKeyArn,
  required this.sseAlgorithm,
});