Module Values.DescribeContributorInsightsOutputSource

Returns information about contributor insights for a given table or global secondary index.

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

    The name of the table being described.

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

    The name of the global secondary index being described.

    *)
  3. contributorInsightsRuleList : ContributorInsightsRuleList.t option;
    (*

    List of names of the associated contributor insights rules.

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

    Current status of contributor insights.

    *)
  5. lastUpdateDateTime : LastUpdateDateTime.t option;
    (*

    Timestamp of the last time the status was changed.

    *)
  6. failureException : FailureException.t option;
    (*

    Returns information about the last failure that was encountered. The most common exceptions for a FAILED status are: LimitExceededException - Per-account Amazon CloudWatch Contributor Insights rule limit reached. Please disable Contributor Insights for other tables/indexes OR disable Contributor Insights rules before retrying. AccessDeniedException - Amazon CloudWatch Contributor Insights rules cannot be modified due to insufficient permissions. AccessDeniedException - Failed to create service-linked role for Contributor Insights due to insufficient permissions. InternalServerError - Failed to create Amazon CloudWatch Contributor Insights rules. Please retry request.

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

    The mode of CloudWatch Contributor Insights for DynamoDB that determines which events are emitted. Can be set to track all access and throttled events or throttled events only.

    *)
}
Sourcetype nonrec error = [
  1. | `InternalServerError of InternalServerError.t
  2. | `ResourceNotFoundException of ResourceNotFoundException.t
  3. | `Unknown_operation_error of string * string option
]
Sourceval make : ?tableName:??? -> ?indexName:??? -> ?contributorInsightsRuleList:??? -> ?contributorInsightsStatus:??? -> ?lastUpdateDateTime:??? -> ?failureException:??? -> ?contributorInsightsMode:??? -> unit -> t
Sourceval error_of_json : string -> Yojson.Safe.t -> [> `InternalServerError of InternalServerError.t | `ResourceNotFoundException of ResourceNotFoundException.t | `Unknown_operation_error of string * string option ]
Sourceval error_of_xml : string -> Awso.Xml.t -> [> `InternalServerError of InternalServerError.t | `ResourceNotFoundException of ResourceNotFoundException.t | `Unknown_operation_error of string * string option ]
Sourceval error_to_json : error -> Yojson.Safe.t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum of string | `List of [> `String of ContributorInsightsRule.t ] list | `String of TableName.t | `Structure of (string * [> `String of ExceptionName.t ]) list | `Timestamp of LastUpdateDateTime.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