Module Shield.Protection

see http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-shield-protection.html

type tag = {
  1. value : string;
  2. key : string;
}

see http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-resource-tags.html

and action = {
  1. block : Yojson.Safe.t option;
  2. count : Yojson.Safe.t option;
}

see http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-shield-protection-action.html

and application_layer_automatic_response_configuration = {
  1. status : string;
  2. action : action;
}

see http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-shield-protection-applicationlayerautomaticresponseconfiguration.html

type properties = {
  1. resource_arn : string;
  2. health_check_arns : string list option;
  3. application_layer_automatic_response_configuration : application_layer_automatic_response_configuration option;
  4. tags : tag list option;
  5. name : string;
}

see http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-shield-protection.html;

val make_properties : resource_arn:string -> ?health_check_arns:string list -> ?application_layer_automatic_response_configuration: application_layer_automatic_response_configuration -> ?tags:tag list -> name:string -> unit -> properties
val make_tag : value:string -> key:string -> unit -> tag
val make_action : ?block:Yojson.Safe.t -> ?count:Yojson.Safe.t -> unit -> action
val make_application_layer_automatic_response_configuration : status:string -> action:action -> unit -> application_layer_automatic_response_configuration
val yojson_of_tag : tag -> [> `Assoc of (string * Yojson.Safe.t) list ]
val yojson_of_action : action -> Yojson.Safe.t
val yojson_of_application_layer_automatic_response_configuration : application_layer_automatic_response_configuration -> [> `Assoc of (string * Yojson.Safe.t) list ]
val yojson_of_properties : properties -> [> `Assoc of (string * Yojson.Safe.t) list ]
type attributes = {
  1. ref_ : string;
  2. protection_arn : string;
  3. protection_id : string;
}
val create_attributes : string -> attributes
val cloudformation_type : string