Serving Config Args
data class ServingConfigArgs(val appAssociation: Output<ServingConfigAppAssociation>? = null, val cleanUrls: Output<Boolean>? = null, val headers: Output<List<HeaderArgs>>? = null, val i18n: Output<I18nConfigArgs>? = null, val redirects: Output<List<RedirectArgs>>? = null, val rewrites: Output<List<RewriteArgs>>? = null, val trailingSlashBehavior: Output<ServingConfigTrailingSlashBehavior>? = null) : ConvertibleToJava<ServingConfigArgs>
The configuration for how incoming requests to a site should be routed and processed before serving content. The URL request paths are matched against the specified URL patterns in the configuration, then Hosting applies the applicable configuration according to a specific priority order.
Constructors
Link copied to clipboard
fun ServingConfigArgs(appAssociation: Output<ServingConfigAppAssociation>? = null, cleanUrls: Output<Boolean>? = null, headers: Output<List<HeaderArgs>>? = null, i18n: Output<I18nConfigArgs>? = null, redirects: Output<List<RedirectArgs>>? = null, rewrites: Output<List<RewriteArgs>>? = null, trailingSlashBehavior: Output<ServingConfigTrailingSlashBehavior>? = null)