Module Values.UpdateApplicationRequestSource

Updates the specified application.

Sourcetype nonrec t = {
  1. name : Name.t;
    (*

    The name of the application. This name is visible to users when display name is not specified.

    *)
  2. displayName : DisplayName.t option;
    (*

    The display name of the application. This name is visible to users in the application catalog.

    *)
  3. description : Description.t option;
    (*

    The description of the application.

    *)
  4. iconS3Location : S3Location.t option;
    (*

    The icon S3 location of the application.

    *)
  5. launchPath : String_.t option;
    (*

    The launch path of the application.

    *)
  6. workingDirectory : String_.t option;
    (*

    The working directory of the application.

    *)
  7. launchParameters : String_.t option;
    (*

    The launch parameters of the application.

    *)
  8. appBlockArn : Arn.t option;
    (*

    The ARN of the app block.

    *)
  9. attributesToDelete : ApplicationAttributes.t option;
    (*

    The attributes to delete for an application.

    *)
}
Sourceval context_ : string
Sourceval make : ?displayName:??? -> ?description:??? -> ?iconS3Location:??? -> ?launchPath:??? -> ?workingDirectory:??? -> ?launchParameters:??? -> ?appBlockArn:??? -> ?attributesToDelete:??? -> name:Name.t -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `List of [> `Enum of string ] list | `String of Name.t | `Structure of (string * [> `String of S3Bucket.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