Module Values.ContributorInsightsSummarySource

Represents a Contributor Insights summary entry.

Sourcetype nonrec t = {
  1. tableName : TableName.t option;
    (*

    Name of the table associated with the summary.

    *)
  2. indexName : IndexName.t option;
    (*

    Name of the index associated with the summary, if any.

    *)
  3. contributorInsightsStatus : ContributorInsightsStatus.t option;
    (*

    Describes the current status for contributor insights for the given table and index, if applicable.

    *)
  4. contributorInsightsMode : ContributorInsightsMode.t option;
    (*

    Indicates the current mode of CloudWatch Contributor Insights, specifying whether it tracks all access and throttled events or throttled events only for the DynamoDB table or index.

    *)
}
Sourceval make : ?tableName:??? -> ?indexName:??? -> ?contributorInsightsStatus:??? -> ?contributorInsightsMode:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum of string | `String of TableName.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