Module Values.DisableEnhancedMonitoringInputSource

Represents the input for DisableEnhancedMonitoring.

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

    The name of the Kinesis data stream for which to disable enhanced monitoring.

    *)
  2. shardLevelMetrics : MetricsNameList.t;
    (*

    List of shard-level metrics to disable. The following are the valid shard-level metrics. The value "ALL" disables every metric. IncomingBytes IncomingRecords OutgoingBytes OutgoingRecords WriteProvisionedThroughputExceeded ReadProvisionedThroughputExceeded IteratorAgeMilliseconds ALL For more information, see Monitoring the Amazon Kinesis Data Streams Service with Amazon CloudWatch in the Amazon Kinesis Data Streams Developer Guide.

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

    The ARN of the stream.

    *)
  4. streamId : StreamId.t option;
    (*

    Not Implemented. Reserved for future use.

    *)
}
Sourceval context_ : string
Sourceval make : ?streamName:??? -> ?streamARN:??? -> ?streamId:??? -> shardLevelMetrics:MetricsNameList.t -> unit -> 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