Module Values.CreateAppBlockRequestSource

Creates an app block. App blocks are a WorkSpaces Applications resource that stores the details about the virtual hard disk in an S3 bucket. It also stores the setup script with details about how to mount the virtual hard disk. The virtual hard disk includes the application binaries and other files necessary to launch your applications. Multiple applications can be assigned to a single app block. This is only supported for Elastic fleets.

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

    The name of the app block.

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

    The description of the app block.

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

    The display name of the app block. This is not displayed to the user.

    *)
  4. sourceS3Location : S3Location.t;
    (*

    The source S3 location of the app block.

    *)
  5. setupScriptDetails : ScriptDetails.t option;
    (*

    The setup script details of the app block. This must be provided for the CUSTOM PackagingType.

    *)
  6. tags : Tags.t option;
    (*

    The tags assigned to the app block.

    *)
  7. postSetupScriptDetails : ScriptDetails.t option;
    (*

    The post setup script details of the app block. This can only be provided for the APPSTREAM2 PackagingType.

    *)
  8. packagingType : PackagingType.t option;
    (*

    The packaging type of the app block.

    *)
}
Sourceval context_ : string
Sourceval make : ?description:??? -> ?displayName:??? -> ?setupScriptDetails:??? -> ?tags:??? -> ?postSetupScriptDetails:??? -> ?packagingType:??? -> name:Name.t -> sourceS3Location:S3Location.t -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum of string | `Map of ([> `String of TagKey.t ] * [> `String of TagValue.t ]) list | `String of Name.t | `Structure of (string * [> `Integer of Integer.t | `String of S3Bucket.t | `Structure of (string * [> `String of S3Bucket.t ]) list ]) 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