Module Values.UpdateInputSecurityGroupRequestSource

The request to update some combination of the Input Security Group name and the IPv4 CIDRs the Input Security Group should allow.

Sourcetype nonrec t = {
  1. inputSecurityGroupId : string;
    (*

    The id of the Input Security Group to update.

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

    A collection of key-value pairs.

    *)
  3. whitelistRules : InputWhitelistRuleCidr.t list option;
    (*

    List of IPv4 CIDR addresses to whitelist

    *)
}
Sourceval context_ : string
Sourceval make : ?tags:??? -> ?whitelistRules:??? -> inputSecurityGroupId:string -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `List of [> `Structure of (string * [> `String of string ]) list ] list | `Map of ([> `String of string ] * [> `String of string ]) list | `String of string ]) 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