Module Values.GetLinkRoutingRuleResponseSource

Retrieves the details of a routing rule for a link.

Sourcetype nonrec t = {
  1. gatewayId : GatewayId.t option;
    (*

    The unique identifier of the gateway.

    *)
  2. linkId : LinkId.t option;
    (*

    The unique identifier of the link.

    *)
  3. ruleId : RuleId.t option;
    (*

    The unique identifier of the routing rule.

    *)
  4. priority : RulePriority.t option;
    (*

    The priority of the routing rule.

    *)
  5. conditions : RuleCondition.t option;
    (*

    The conditions for the routing rule.

    *)
  6. status : RuleStatus.t option;
    (*

    The status of the routing rule.

    *)
  7. createdAt : Timestamp.t option;
    (*

    The timestamp of when the routing rule was created.

    *)
  8. updatedAt : Timestamp.t option;
    (*

    The timestamp of when the routing rule was last updated.

    *)
  9. tags : TagsMap.t option;
    (*

    A map of the key-value pairs for the tag or tags assigned to the specified resource.

    *)
}
Sourcetype nonrec error = [
  1. | `AccessDeniedException of AccessDeniedException.t
  2. | `InternalServerException of InternalServerException.t
  3. | `ResourceNotFoundException of ResourceNotFoundException.t
  4. | `ThrottlingException of ThrottlingException.t
  5. | `ValidationException of ValidationException.t
  6. | `Unknown_operation_error of string * string option
]
Sourceval make : ?gatewayId:??? -> ?linkId:??? -> ?ruleId:??? -> ?priority:??? -> ?conditions:??? -> ?status:??? -> ?createdAt:??? -> ?updatedAt:??? -> ?tags:??? -> unit -> t
Sourceval error_of_json : string -> Yojson.Safe.t -> [> `AccessDeniedException of AccessDeniedException.t | `InternalServerException of InternalServerException.t | `ResourceNotFoundException of ResourceNotFoundException.t | `ThrottlingException of ThrottlingException.t | `Unknown_operation_error of string * string option | `ValidationException of ValidationException.t ]
Sourceval error_of_xml : string -> Awso.Xml.t -> [> `AccessDeniedException of AccessDeniedException.t | `InternalServerException of InternalServerException.t | `ResourceNotFoundException of ResourceNotFoundException.t | `ThrottlingException of ThrottlingException.t | `Unknown_operation_error of string * string option | `ValidationException of ValidationException.t ]
Sourceval error_to_json : error -> Yojson.Safe.t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum of string | `Integer of RulePriority.t | `Map of ([> `String of TagKey.t ] * [> `String of TagValue.t ]) list | `String of GatewayId.t | `Structure of (string * [> `String of RuleConditionHostHeaderString.t | `Structure of (string * [> `String of QueryStringKeyValuePairKeyString.t ]) list ]) list | `Timestamp of Timestamp.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