Module Values.WaveSource

Archive wave.

Sourcetype nonrec t = {
  1. waveID : WaveID.t option;
    (*

    Wave ID.

    *)
  2. arn : ARN.t option;
    (*

    Wave ARN.

    *)
  3. name : WaveName.t option;
    (*

    Wave name.

    *)
  4. description : WaveDescription.t option;
    (*

    Wave description.

    *)
  5. isArchived : Boolean.t option;
    (*

    Wave archival status.

    *)
  6. waveAggregatedStatus : WaveAggregatedStatus.t option;
    (*

    Wave aggregated status.

    *)
  7. creationDateTime : ISO8601DatetimeString.t option;
    (*

    Wave creation dateTime.

    *)
  8. lastModifiedDateTime : ISO8601DatetimeString.t option;
    (*

    Wave last modified dateTime.

    *)
  9. tags : TagsMap.t option;
    (*

    Wave tags.

    *)
}
Sourcetype nonrec error = [
  1. | `ConflictException of ConflictException.t
  2. | `ResourceNotFoundException of ResourceNotFoundException.t
  3. | `ServiceQuotaExceededException of ServiceQuotaExceededException.t
  4. | `UninitializedAccountException of UninitializedAccountException.t
  5. | `Unknown_operation_error of string * string option
]
Sourceval make : ?waveID:??? -> ?arn:??? -> ?name:??? -> ?description:??? -> ?isArchived:??? -> ?waveAggregatedStatus:??? -> ?creationDateTime:??? -> ?lastModifiedDateTime:??? -> ?tags:??? -> unit -> t
Sourceval error_of_json : string -> Yojson.Safe.t -> [> `ConflictException of ConflictException.t | `ResourceNotFoundException of ResourceNotFoundException.t | `ServiceQuotaExceededException of ServiceQuotaExceededException.t | `UninitializedAccountException of UninitializedAccountException.t | `Unknown_operation_error of string * string option ]
Sourceval error_of_xml : string -> Awso.Xml.t -> [> `ConflictException of ConflictException.t | `ResourceNotFoundException of ResourceNotFoundException.t | `ServiceQuotaExceededException of ServiceQuotaExceededException.t | `UninitializedAccountException of UninitializedAccountException.t | `Unknown_operation_error of string * string option ]
Sourceval error_to_json : error -> Yojson.Safe.t
Sourceval to_value : t -> [> `Structure of (string * [> `Boolean of Boolean.t | `Map of ([> `String of TagKey.t ] * [> `String of TagValue.t ]) list | `String of WaveID.t | `Structure of (string * [> `Enum of string | `Long of PositiveInteger.t | `String of ISO8601DatetimeString.t ]) list ]) 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