Module Values.ProtectionSource

An object that represents a resource that is under DDoS protection.

Sourcetype nonrec t = {
  1. id : ProtectionId.t option;
    (*

    The unique identifier (ID) of the protection.

    *)
  2. name : ProtectionName.t option;
    (*

    The name of the protection. For example, My CloudFront distributions.

    *)
  3. resourceArn : ResourceArn.t option;
    (*

    The ARN (Amazon Resource Name) of the Amazon Web Services resource that is protected.

    *)
  4. healthCheckIds : HealthCheckIds.t option;
    (*

    The unique identifier (ID) for the Route 53 health check that's associated with the protection.

    *)
  5. protectionArn : ResourceArn.t option;
    (*

    The ARN (Amazon Resource Name) of the protection.

    *)
  6. applicationLayerAutomaticResponseConfiguration : ApplicationLayerAutomaticResponseConfiguration.t option;
    (*

    The automatic application layer DDoS mitigation settings for the protection. This configuration determines whether Shield Advanced automatically manages rules in the web ACL in order to respond to application layer events that Shield Advanced determines to be DDoS attacks.

    *)
}
Sourceval make : ?id:??? -> ?name:??? -> ?resourceArn:??? -> ?healthCheckIds:??? -> ?protectionArn:??? -> ?applicationLayerAutomaticResponseConfiguration:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `List of [> `String of HealthCheckId.t ] list | `String of ProtectionId.t | `Structure of (string * [> `Enum of string | `Structure of (string * [> `Structure of 'a 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