values property

List<String>? values
final

The condition value. Specify only when Field is host-header or path-pattern. Alternatively, to specify multiple host names or multiple path patterns, use HostHeaderConfig or PathPatternConfig.

If Field is host-header and you are not using HostHeaderConfig, you can specify a single host name (for example, my.example.com) in Values. A host name is case insensitive, can be up to 128 characters in length, and can contain any of the following characters.

  • A-Z, a-z, 0-9
  • - .
  • * (matches 0 or more characters)
  • ? (matches exactly 1 character)
If Field is path-pattern and you are not using PathPatternConfig, you can specify a single path pattern (for example, /img/*) in Values. A path pattern is case-sensitive, can be up to 128 characters in length, and can contain any of the following characters.
  • A-Z, a-z, 0-9
  • _ - . $ / ~ " ' @ : +
  • & (using &amp;)
  • * (matches 0 or more characters)
  • ? (matches exactly 1 character)

Implementation

final List<String>? values;