Module Values_4.UpdateSecurityGroupRuleDescriptionsIngressRequestSource

Updates the description of an ingress (inbound) security group rule. You can replace an existing description, or add a description to a rule that did not have one previously. You can remove a description for a security group rule by omitting the description parameter in the request.

Sourcetype nonrec t = {
  1. dryRun : Values_0.Boolean.t option;
    (*

    Checks whether you have the required permissions for the action, without actually making the request, and provides an error response. If you have the required permissions, the error response is DryRunOperation. Otherwise, it is UnauthorizedOperation.

    *)
  2. groupId : Values_0.SecurityGroupId.t option;
    (*

    The ID of the security group. You must specify either the security group ID or the security group name in the request. For security groups in a nondefault VPC, you must specify the security group ID.

    *)
  3. groupName : Values_1.SecurityGroupName.t option;
    (*

    [Default VPC] The name of the security group. You must specify either the security group ID or the security group name. For security groups in a nondefault VPC, you must specify the security group ID.

    *)
  4. ipPermissions : Values_1.IpPermissionList.t option;
    (*

    The IP permissions for the security group rule. You must specify either IP permissions or a description.

    *)
  5. securityGroupRuleDescriptions : Values_3.SecurityGroupRuleDescriptionList.t option;
    (*

    The description for the ingress security group rules. You must specify either a description or IP permissions.

    *)
}
Sourceval make : ?dryRun:??? -> ?groupId:??? -> ?groupName:??? -> ?ipPermissions:??? -> ?securityGroupRuleDescriptions:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Boolean of Values_0.Boolean.t | `List of [> `Structure of (string * [> `Integer of int | `List of [> `Structure of (string * [> `String of string ]) list ] list | `String of string ]) list ] list | `String of Values_0.SecurityGroupId.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