Module Values.KeyLastUsageDataSource

Contains usage information about the last time the KMS key was used for a successful cryptographic operation.

Sourcetype nonrec t = {
  1. operation : KeyLastUsageTrackingOperation.t option;
    (*

    The last successful cryptographic operation the KMS key was used for. Absent if the key has not been used since KMS began tracking.

    *)
  2. timestamp : DateType.t option;
    (*

    The date and time when the KMS key was most recently used for a successful cryptographic operation. Absent if the key has not been used since KMS began tracking.

    *)
  3. cloudTrailEventId : CloudTrailEventIdType.t option;
    (*

    The CloudTrail eventId associated with the last successful cryptographic operation. Absent if the key has not been used since KMS began tracking.

    *)
  4. kmsRequestId : KmsRequestIdType.t option;
    (*

    The KMS request ID associated with the last successful cryptographic operation. Absent if the key has not been used since KMS began tracking.

    *)
}
Sourceval make : ?operation:??? -> ?timestamp:??? -> ?cloudTrailEventId:??? -> ?kmsRequestId:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum of string | `String of CloudTrailEventIdType.t | `Timestamp of DateType.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