Module Values.EnhancedMonitoringOutputSource

Represents the output for EnableEnhancedMonitoring and DisableEnhancedMonitoring.

Sourcetype nonrec t = {
  1. streamName : StreamName.t option;
    (*

    The name of the Kinesis data stream.

    *)
  2. currentShardLevelMetrics : MetricsNameList.t option;
    (*

    Represents the current state of the metrics that are in the enhanced state before the operation.

    *)
  3. desiredShardLevelMetrics : MetricsNameList.t option;
    (*

    Represents the list of all the metrics that would be in the enhanced state after the operation.

    *)
  4. streamARN : StreamARN.t option;
    (*

    The ARN of the stream.

    *)
}
Sourcetype nonrec error = [
  1. | `AccessDeniedException of AccessDeniedException.t
  2. | `InvalidArgumentException of InvalidArgumentException.t
  3. | `LimitExceededException of LimitExceededException.t
  4. | `ResourceInUseException of ResourceInUseException.t
  5. | `ResourceNotFoundException of ResourceNotFoundException.t
  6. | `Unknown_operation_error of string * string option
]
Sourceval make : ?streamName:??? -> ?currentShardLevelMetrics:??? -> ?desiredShardLevelMetrics:??? -> ?streamARN:??? -> unit -> t
Sourceval error_of_json : string -> Yojson.Safe.t -> [> `AccessDeniedException of AccessDeniedException.t | `InvalidArgumentException of InvalidArgumentException.t | `LimitExceededException of LimitExceededException.t | `ResourceInUseException of ResourceInUseException.t | `ResourceNotFoundException of ResourceNotFoundException.t | `Unknown_operation_error of string * string option ]
Sourceval error_of_xml : string -> Awso.Xml.t -> [> `AccessDeniedException of AccessDeniedException.t | `InvalidArgumentException of InvalidArgumentException.t | `LimitExceededException of LimitExceededException.t | `ResourceInUseException of ResourceInUseException.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 * [> `List of [> `Enum of string ] list | `String of StreamName.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