Module Values.DescribedWebAppSource

A structure that describes the parameters for the web app, as identified by the WebAppId.

Sourcetype nonrec t = {
  1. arn : Arn.t option;
    (*

    The Amazon Resource Name (ARN) of the web app.

    *)
  2. webAppId : WebAppId.t option;
    (*

    The unique identifier for the web app.

    *)
  3. describedIdentityProviderDetails : DescribedWebAppIdentityProviderDetails.t option;
    (*

    A structure that contains the details for the identity provider used by the web app.

    *)
  4. 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.

    *)
  5. webAppEndpoint : WebAppEndpoint.t option;
    (*

    The WebAppEndpoint is the unique URL for your Transfer Family web app. This is the value that you use when you configure Origins on CloudFront.

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

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

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

    Key-value pairs that can be used to group and search for web apps. Tags are metadata attached to web apps for any purpose.

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

    Setting for the type of endpoint policy for the web app. The default value is STANDARD. If your web app was created in an Amazon Web Services GovCloud (US) Region, the value of this parameter can be FIPS, which indicates the web app endpoint is FIPS-compliant.

    *)
  9. endpointType : WebAppEndpointType.t option;
    (*

    The type of endpoint hosting the web app. Valid values are PUBLIC for publicly accessible endpoints and VPC for VPC-hosted endpoints that provide network isolation.

    *)
  10. describedEndpointDetails : DescribedWebAppEndpointDetails.t option;
    (*

    The endpoint configuration details for the web app, including VPC settings if the endpoint is hosted within a VPC.

    *)
}
Sourceval make : ?arn:??? -> ?webAppId:??? -> ?describedIdentityProviderDetails:??? -> ?accessEndpoint:??? -> ?webAppEndpoint:??? -> ?webAppUnits:??? -> ?tags:??? -> ?webAppEndpointPolicy:??? -> ?endpointType:??? -> ?describedEndpointDetails:??? -> 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 Arn.t | `Structure of (string * [> `Integer of WebAppUnitCount.t | `Structure of (string * [> `List of [> `String of SubnetId.t ] list | `String of IdentityCenterApplicationArn.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