Module Values.CreateWebAppRequestSource

Creates a web app based on specified parameters, and returns the ID for the new web app. You can configure the web app to be publicly accessible or hosted within a VPC. For more information about using VPC endpoints with Transfer Family, see Create a Transfer Family web app in a VPC.

Sourcetype nonrec t = {
  1. identityProviderDetails : WebAppIdentityProviderDetails.t;
    (*

    You can provide a structure that contains the details for the identity provider to use with your web app. For more details about this parameter, see Configure your identity provider for Transfer Family web apps.

    *)
  2. accessEndpoint : WebAppAccessEndpoint.t option;
    (*

    The AccessEndpoint is the URL that you provide to your users for them to interact with the Transfer Family web app. You can specify a custom URL or use the default value. Before you enter a custom URL for this parameter, follow the steps described in Update your access endpoint with a custom URL.

    *)
  3. webAppUnits : WebAppUnits.t option;
    (*

    A union that contains the value for number of concurrent connections or the user sessions on your web app.

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

    Key-value pairs that can be used to group and search for web apps.

    *)
  5. webAppEndpointPolicy : WebAppEndpointPolicy.t option;
    (*

    Setting for the type of endpoint policy for the web app. The default value is STANDARD. If you are creating the web app in an Amazon Web Services GovCloud (US) Region, you can set this parameter to FIPS.

    *)
  6. endpointDetails : WebAppEndpointDetails.t option;
    (*

    The endpoint configuration for the web app. You can specify whether the web app endpoint is publicly accessible or hosted within a VPC.

    *)
}
Sourceval context_ : string
Sourceval make : ?accessEndpoint:??? -> ?webAppUnits:??? -> ?tags:??? -> ?webAppEndpointPolicy:??? -> ?endpointDetails:??? -> identityProviderDetails:WebAppIdentityProviderDetails.t -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum of string | `List of [> `Structure of (string * [> `String of TagKey.t ]) list ] list | `String of WebAppAccessEndpoint.t | `Structure of (string * [> `Integer of WebAppUnitCount.t | `Structure of (string * [> `Enum of string | `List of [> `String of SubnetId.t ] list | `String of IdentityCenterInstanceArn.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