Module Values.AppBlockSource

Describes 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 : String_.t option;
    (*

    The name of the app block.

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

    The ARN of the app block.

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

    The description of the app block.

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

    The display name of the app block.

    *)
  5. sourceS3Location : S3Location.t option;
    (*

    The source S3 location of the app block.

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

    The setup script details of the app block. This only applies to app blocks with PackagingType CUSTOM.

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

    The created time of the app block.

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

    The post setup script details of the app block. This only applies to app blocks with PackagingType APPSTREAM2.

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

    The packaging type of the app block.

    *)
  10. state : AppBlockState.t option;
    (*

    The state of the app block. An app block with WorkSpaces Applications packaging will be in the INACTIVE state if no application package (VHD) is assigned to it. After an application package (VHD) is created by an app block builder for an app block, it becomes ACTIVE. Custom app blocks are always in the ACTIVE state and no action is required to use them.

    *)
  11. appBlockErrors : ErrorDetailsList.t option;
    (*

    The errors of the app block.

    *)
}
Sourceval make : ?name:??? -> ?arn:??? -> ?description:??? -> ?displayName:??? -> ?sourceS3Location:??? -> ?setupScriptDetails:??? -> ?createdTime:??? -> ?postSetupScriptDetails:??? -> ?packagingType:??? -> ?state:??? -> ?appBlockErrors:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum of string | `List of [> `Structure of (string * [> `String of String_.t ]) list ] list | `String of String_.t | `Structure of (string * [> `Integer of Integer.t | `String of S3Bucket.t | `Structure of (string * [> `String of S3Bucket.t ]) list ]) 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