Module Values_1.DataCaptureConfigSummarySource

The currently active data capture configuration used by your Endpoint.

Sourcetype nonrec t = {
  1. enableCapture : Values_0.EnableCapture.t option;
    (*

    Whether data capture is enabled or disabled.

    *)
  2. captureStatus : Values_0.CaptureStatus.t option;
    (*

    Whether data capture is currently functional.

    *)
  3. currentSamplingPercentage : Values_0.SamplingPercentage.t option;
    (*

    The percentage of requests being captured by your Endpoint.

    *)
  4. destinationS3Uri : Values_0.DestinationS3Uri.t option;
    (*

    The Amazon S3 location being used to capture the data.

    *)
  5. kmsKeyId : Values_0.KmsKeyId.t option;
    (*

    The KMS key being used to encrypt the data in Amazon S3.

    *)
}
Sourceval make : ?enableCapture:??? -> ?captureStatus:??? -> ?currentSamplingPercentage:??? -> ?destinationS3Uri:??? -> ?kmsKeyId:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Boolean of Values_0.EnableCapture.t | `Enum of string | `Integer of Values_0.SamplingPercentage.t | `String of Values_0.DestinationS3Uri.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