Module Values.AwsS3BucketWebsiteConfigurationSource

Website parameters for the S3 bucket.

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

    The name of the error document for the website.

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

    The name of the index document for the website.

    *)
  3. redirectAllRequestsTo : AwsS3BucketWebsiteConfigurationRedirectTo.t option;
    (*

    The redirect behavior for requests to the website.

    *)
  4. routingRules : AwsS3BucketWebsiteConfigurationRoutingRules.t option;
    (*

    The rules for applying redirects for requests to the website.

    *)
}
Sourceval make : ?errorDocument:??? -> ?indexDocumentSuffix:??? -> ?redirectAllRequestsTo:??? -> ?routingRules:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `List of [> `Structure of (string * [> `Structure of (string * [> `String of NonEmptyString.t ]) list ]) list ] list | `String of NonEmptyString.t | `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