Module Values.AwsDynamoDbTableSseDescriptionSource

Information about the server-side encryption for the table.

Sourcetype nonrec t = {
  1. inaccessibleEncryptionDateTime : NonEmptyString.t option;
    (*

    If the key is inaccessible, the date and time when DynamoDB detected that the key was inaccessible. For more information about the validation and formatting of timestamp fields in Security Hub CSPM, see Timestamps.

    *)
  2. status : NonEmptyString.t option;
    (*

    The status of the server-side encryption.

    *)
  3. sseType : NonEmptyString.t option;
    (*

    The type of server-side encryption.

    *)
  4. kmsMasterKeyArn : NonEmptyString.t option;
    (*

    The ARN of the KMS key that is used for the KMS encryption.

    *)
}
Sourceval make : ?inaccessibleEncryptionDateTime:??? -> ?status:??? -> ?sseType:??? -> ?kmsMasterKeyArn:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `String of NonEmptyString.t ]) list ]
Sourceval to_query : t -> Awso.Client.Query.t
Sourceval of_xml : Awso.Xml.t -> t
Sourceval of_string : string -> t
Sourceval of_json : Yojson.Safe.t -> t
Sourceval to_json : t -> Yojson.Safe.t