Module Values.UpdateArchiveResponseSource

Updates the specified archive.

Sourcetype nonrec t = {
  1. archiveArn : ArchiveArn.t option;
    (*

    The ARN of the archive.

    *)
  2. state : ArchiveState.t option;
    (*

    The state of the archive.

    *)
  3. stateReason : ArchiveStateReason.t option;
    (*

    The reason that the archive is in the current state.

    *)
  4. creationTime : Timestamp.t option;
    (*

    The time at which the archive was updated.

    *)
}
Sourcetype nonrec error = [
  1. | `ConcurrentModificationException of ConcurrentModificationException.t
  2. | `InternalException of InternalException.t
  3. | `InvalidEventPatternException of InvalidEventPatternException.t
  4. | `LimitExceededException of LimitExceededException.t
  5. | `ResourceNotFoundException of ResourceNotFoundException.t
  6. | `Unknown_operation_error of string * string option
]
Sourceval make : ?archiveArn:??? -> ?state:??? -> ?stateReason:??? -> ?creationTime:??? -> unit -> t
Sourceval error_of_json : string -> Yojson.Safe.t -> [> `ConcurrentModificationException of unit | `InternalException of unit | `InvalidEventPatternException of unit | `LimitExceededException of unit | `ResourceNotFoundException of unit | `Unknown_operation_error of string * string option ]
Sourceval error_of_xml : string -> Awso.Xml.t -> [> `ConcurrentModificationException of unit | `InternalException of unit | `InvalidEventPatternException of unit | `LimitExceededException of unit | `ResourceNotFoundException of unit | `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 | `String of ArchiveArn.t | `Timestamp of Timestamp.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