Module Values_1.TransitGatewayPolicyRuleSource

Describes a rule associated with a transit gateway policy.

Sourcetype nonrec t = {
  1. sourceCidrBlock : Values_0.String_.t option;
    (*

    The source CIDR block for the transit gateway policy rule.

    *)
  2. sourcePortRange : Values_0.String_.t option;
    (*

    The port range for the transit gateway policy rule. Currently this is set to * (all).

    *)
  3. destinationCidrBlock : Values_0.String_.t option;
    (*

    The destination CIDR block for the transit gateway policy rule.

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

    The port range for the transit gateway policy rule. Currently this is set to * (all).

    *)
  5. protocol : Values_0.String_.t option;
    (*

    The protocol used by the transit gateway policy rule.

    *)
  6. metaData : Values_0.TransitGatewayPolicyRuleMetaData.t option;
    (*

    The meta data tags used for the transit gateway policy rule.

    *)
}
Sourceval make : ?sourceCidrBlock:??? -> ?sourcePortRange:??? -> ?destinationCidrBlock:??? -> ?destinationPortRange:??? -> ?protocol:??? -> ?metaData:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `String of Values_0.String_.t | `Structure of (string * [> `String of string ]) list ]) 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