Module Values.ApplicationSource

Archive application.

Sourcetype nonrec t = {
  1. applicationID : ApplicationID.t option;
    (*

    Application ID.

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

    Application ARN.

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

    Application name.

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

    Application description.

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

    Application archival status.

    *)
  6. applicationAggregatedStatus : ApplicationAggregatedStatus.t option;
    (*

    Application aggregated status.

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

    Application creation dateTime.

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

    Application last modified dateTime.

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

    Application tags.

    *)
  10. waveID : WaveID.t option;
    (*

    Application wave ID.

    *)
}
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 : ?applicationID:??? -> ?arn:??? -> ?name:??? -> ?description:??? -> ?isArchived:??? -> ?applicationAggregatedStatus:??? -> ?creationDateTime:??? -> ?lastModifiedDateTime:??? -> ?tags:??? -> ?waveID:??? -> 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 ApplicationID.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