Module Values.AwsS3BucketWebsiteConfigurationRoutingRuleConditionSource

The condition that must be met in order to apply the routing rule.

Sourcetype nonrec t = {
  1. httpErrorCodeReturnedEquals : NonEmptyString.t option;
    (*

    Indicates to redirect the request if the HTTP error code matches this value.

    *)
  2. keyPrefixEquals : NonEmptyString.t option;
    (*

    Indicates to redirect the request if the key prefix matches this value.

    *)
}
Sourceval make : ?httpErrorCodeReturnedEquals:??? -> ?keyPrefixEquals:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `String of NonEmptyString.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