TableEncryptionSpecification constructor

const TableEncryptionSpecification({
  1. Input<String?>? kmsKeyIdentifier,
  2. Input<String?>? type,
})

Creates a new TableEncryptionSpecification. kmsKeyIdentifier ARN of the customer managed KMS key. type The encryption option specified for the table. Valid values: AWS_OWNED_KMS_KEY, CUSTOMER_MANAGED_KMS_KEY. The default value is AWS_OWNED_KMS_KEY.

Implementation

const TableEncryptionSpecification({
  this.kmsKeyIdentifier,
  this.type,
});