Module Values.AwsS3BucketWebsiteConfigurationRoutingRuleSource

A rule for redirecting requests to the website.

Sourcetype nonrec t = {
  1. condition : AwsS3BucketWebsiteConfigurationRoutingRuleCondition.t option;
    (*

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

    *)
  2. redirect : AwsS3BucketWebsiteConfigurationRoutingRuleRedirect.t option;
    (*

    Provides the rules to redirect the request if the condition in Condition is met.

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