BucketWebsiteRoutingRulesRoutingRuleConditionIncludeHeader

data class BucketWebsiteRoutingRulesRoutingRuleConditionIncludeHeader(val endsWith: String? = null, val equals: String? = null, val key: String? = null, val startsWith: String? = null)

Constructors

constructor(endsWith: String? = null, equals: String? = null, key: String? = null, startsWith: String? = null)

Types

Link copied to clipboard
object Companion

Properties

Link copied to clipboard
val endsWith: String? = null

This rule can only be matched if the request contains the Header specified by Key and the value ends with this value.

Link copied to clipboard
val equals: String? = null

This rule can only be matched if the request contains the Header specified by Key and the value is the specified value.

Link copied to clipboard
val key: String? = null
Link copied to clipboard
val startsWith: String? = null

This rule can only be matched if the request contains the Header specified by Key and the value starts with this value.