Module Values.CreateStackRequestSource

Creates a stack to start streaming applications to users. A stack consists of an associated fleet, user access policies, and storage configurations.

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

    The name of the stack.

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

    The description to display.

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

    The stack name to display.

    *)
  4. storageConnectors : StorageConnectorList.t option;
    (*

    The storage connectors to enable.

    *)
  5. redirectURL : RedirectURL.t option;
    (*

    The URL that users are redirected to after their streaming session ends.

    *)
  6. feedbackURL : FeedbackURL.t option;
    (*

    The URL that users are redirected to after they click the Send Feedback link. If no URL is specified, no Send Feedback link is displayed.

    *)
  7. userSettings : UserSettingList.t option;
    (*

    The actions that are enabled or disabled for users during their streaming sessions. By default, these actions are enabled.

    *)
  8. applicationSettings : ApplicationSettings.t option;
    (*

    The persistent application settings for users of a stack. When these settings are enabled, changes that users make to applications and Windows settings are automatically saved after each session and applied to the next session.

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

    The tags to associate with the stack. A tag is a key-value pair, and the value is optional. For example, Environment=Test. If you do not specify a value, Environment=. If you do not specify a value, the value is set to an empty string. Generally allowed characters are: letters, numbers, and spaces representable in UTF-8, and the following special characters: _ . : / = + \ - @ For more information about tags, see Tagging Your Resources in the Amazon WorkSpaces Applications Administration Guide.

    *)
  10. accessEndpoints : AccessEndpointList.t option;
    (*

    The list of interface VPC endpoint (interface endpoint) objects. Users of the stack can connect to WorkSpaces Applications only through the specified endpoints.

    *)
  11. embedHostDomains : EmbedHostDomains.t option;
    (*

    The domains where WorkSpaces Applications streaming sessions can be embedded in an iframe. You must approve the domains that you want to host embedded WorkSpaces Applications streaming sessions.

    *)
  12. streamingExperienceSettings : StreamingExperienceSettings.t option;
    (*

    The streaming protocol you want your stack to prefer. This can be UDP or TCP. Currently, UDP is only supported in the Windows native client.

    *)
  13. contentRedirection : ContentRedirection.t option;
  14. agentAccessConfig : AgentAccessConfig.t option;
    (*

    The configuration for agent access on the stack. If specified, agent access is enabled for the stack.

    *)
}
Sourceval context_ : string
Sourceval make : ?description:??? -> ?displayName:??? -> ?storageConnectors:??? -> ?redirectURL:??? -> ?feedbackURL:??? -> ?userSettings:??? -> ?applicationSettings:??? -> ?tags:??? -> ?accessEndpoints:??? -> ?embedHostDomains:??? -> ?streamingExperienceSettings:??? -> ?contentRedirection:??? -> ?agentAccessConfig:??? -> name:Name.t -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `List of [> `String of EmbedHostDomain.t | `Structure of (string * [> `Enum of string | `Integer of Integer.t | `List of [> `String of Domain.t ] list | `String of ResourceIdentifier.t ]) list ] list | `Map of ([> `String of TagKey.t ] * [> `String of TagValue.t ]) list | `String of Name.t | `Structure of (string * [> `Boolean of Boolean.t | `Enum of string | `List of [> `Structure of (string * [> `Enum of string ]) list ] list | `String of SettingsGroup.t | `Structure of (string * [> `Boolean of BooleanObject.t | `List of [> `String of UrlPattern.t ] list ]) 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