Module Values_2.RevokedSecurityGroupRuleSource

A security group rule removed with RevokeSecurityGroupEgress or RevokeSecurityGroupIngress.

Sourcetype nonrec t = {
  1. securityGroupRuleId : Values_1.SecurityGroupRuleId.t option;
    (*

    A security group rule ID.

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

    A security group ID.

    *)
  3. isEgress : Values_0.Boolean.t option;
    (*

    Defines if a security group rule is an outbound rule.

    *)
  4. ipProtocol : Values_0.String_.t option;
    (*

    The security group rule's protocol.

    *)
  5. fromPort : Values_0.Integer.t option;
    (*

    The 'from' port number of the security group rule.

    *)
  6. toPort : Values_0.Integer.t option;
    (*

    The 'to' port number of the security group rule.

    *)
  7. cidrIpv4 : Values_0.String_.t option;
    (*

    The IPv4 CIDR of the traffic source.

    *)
  8. cidrIpv6 : Values_0.String_.t option;
    (*

    The IPv6 CIDR of the traffic source.

    *)
  9. prefixListId : Values_0.PrefixListResourceId.t option;
    (*

    The ID of a prefix list that's the traffic source.

    *)
  10. referencedGroupId : Values_0.SecurityGroupId.t option;
    (*

    The ID of a referenced security group.

    *)
  11. description : Values_0.String_.t option;
    (*

    A description of the revoked security group rule.

    *)
}
Sourceval make : ?securityGroupRuleId:??? -> ?groupId:??? -> ?isEgress:??? -> ?ipProtocol:??? -> ?fromPort:??? -> ?toPort:??? -> ?cidrIpv4:??? -> ?cidrIpv6:??? -> ?prefixListId:??? -> ?referencedGroupId:??? -> ?description:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Boolean of Values_0.Boolean.t | `Integer of Values_0.Integer.t | `String of Values_1.SecurityGroupRuleId.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