Module Values.ApplicationSource

Describes an application in the application catalog.

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

    The name of the application.

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

    The application name to display.

    *)
  3. iconURL : String_.t option;
    (*

    The URL for the application icon. This URL might be time-limited.

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

    The path to the application executable in the instance.

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

    The arguments that are passed to the application at launch.

    *)
  6. enabled : Boolean.t option;
    (*

    If there is a problem, the application can be disabled after image creation.

    *)
  7. metadata : Metadata.t option;
    (*

    Additional attributes that describe the application.

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

    The working directory for the application.

    *)
  9. description : String_.t option;
    (*

    The description of the application.

    *)
  10. arn : Arn.t option;
    (*

    The ARN of the application.

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

    The app block ARN of the application.

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

    The S3 location of the application icon.

    *)
  13. platforms : Platforms.t option;
    (*

    The platforms on which the application can run.

    *)
  14. instanceFamilies : StringList.t option;
    (*

    The instance families for the application.

    *)
  15. createdTime : Timestamp.t option;
    (*

    The time at which the application was created within the app block.

    *)
}
Sourceval make : ?name:??? -> ?displayName:??? -> ?iconURL:??? -> ?launchPath:??? -> ?launchParameters:??? -> ?enabled:??? -> ?metadata:??? -> ?workingDirectory:??? -> ?description:??? -> ?arn:??? -> ?appBlockArn:??? -> ?iconS3Location:??? -> ?platforms:??? -> ?instanceFamilies:??? -> ?createdTime:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Boolean of Boolean.t | `List of [> `Enum of string | `String of String_.t ] list | `Map of ([> `String of String_.t ] * [> `String of String_.t ]) list | `String of String_.t | `Structure of (string * [> `String of S3Bucket.t ]) list | `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