Module Values.WafConfigurationSource

Describes the Firewall configuration for a hosted Amplify application. Firewall support enables you to protect your web applications with a direct integration with WAF. For more information about using WAF protections for an Amplify application, see Firewall support for hosted sites in the Amplify User Guide.

Sourcetype nonrec t = {
  1. webAclArn : WebAclArn.t option;
    (*

    The Amazon Resource Name (ARN) for the web ACL associated with an Amplify app.

    *)
  2. wafStatus : WafStatus.t option;
    (*

    The status of the process to associate or disassociate a web ACL to an Amplify app.

    *)
  3. statusReason : StatusReason.t option;
    (*

    The reason for the current status of the Firewall configuration.

    *)
}
Sourceval make : ?webAclArn:??? -> ?wafStatus:??? -> ?statusReason:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum of string | `String of WebAclArn.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