Module Values.DecreaseStreamRetentionPeriodInputSource

Represents the input for DecreaseStreamRetentionPeriod.

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

    The name of the stream to modify.

    *)
  2. retentionPeriodHours : RetentionPeriodHours.t;
    (*

    The new retention period of the stream, in hours. Must be less than the current retention period.

    *)
  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:??? -> retentionPeriodHours:RetentionPeriodHours.t -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Integer of RetentionPeriodHours.t | `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