Module WorkSpacesWeb.IpAccessSettings

see http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-workspacesweb-ipaccesssettings.html

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

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

and ip_rule = {
  1. ip_range : string;
  2. description : string option;
}

see http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-workspacesweb-ipaccesssettings-iprule.html

type properties = {
  1. ip_rules : ip_rule list;
  2. description : string option;
  3. customer_managed_key : string option;
  4. additional_encryption_context : string Stdlib__Map.Make(Stdlib.String).t option;
  5. display_name : string option;
  6. tags : tag list option;
}

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

val make_properties : ip_rules:ip_rule list -> ?description:string -> ?customer_managed_key:string -> ?additional_encryption_context:string Stdlib__Map.Make(Stdlib.String).t -> ?display_name:string -> ?tags:tag list -> unit -> properties
val make_tag : value:string -> key:string -> unit -> tag
val make_ip_rule : ip_range:string -> ?description:string -> unit -> ip_rule
val yojson_of_tag : tag -> [> `Assoc of (string * Yojson.Safe.t) list ]
val yojson_of_ip_rule : ip_rule -> [> `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. creation_date : string;
  3. associated_portal_arns : string list;
  4. ip_access_settings_arn : string;
}
val create_attributes : string -> attributes
val cloudformation_type : string