public static interface HeaderMatchMethod.Builder extends SdkPojo, CopyableBuilder<HeaderMatchMethod.Builder,HeaderMatchMethod>
| Modifier and Type | Method and Description |
|---|---|
HeaderMatchMethod.Builder |
exact(String exact)
The value sent by the client must match the specified value exactly.
|
HeaderMatchMethod.Builder |
prefix(String prefix)
The value sent by the client must begin with the specified characters.
|
default HeaderMatchMethod.Builder |
range(Consumer<MatchRange.Builder> range)
An object that represents the range of values to match on.
|
HeaderMatchMethod.Builder |
range(MatchRange range)
An object that represents the range of values to match on.
|
HeaderMatchMethod.Builder |
regex(String regex)
The value sent by the client must include the specified characters.
|
HeaderMatchMethod.Builder |
suffix(String suffix)
The value sent by the client must end with the specified characters.
|
equalsBySdkFields, sdkFieldscopyapplyMutation, buildHeaderMatchMethod.Builder exact(String exact)
The value sent by the client must match the specified value exactly.
exact - The value sent by the client must match the specified value exactly.HeaderMatchMethod.Builder prefix(String prefix)
The value sent by the client must begin with the specified characters.
prefix - The value sent by the client must begin with the specified characters.HeaderMatchMethod.Builder range(MatchRange range)
An object that represents the range of values to match on.
range - An object that represents the range of values to match on.default HeaderMatchMethod.Builder range(Consumer<MatchRange.Builder> range)
An object that represents the range of values to match on.
This is a convenience that creates an instance of theMatchRange.Builder avoiding the need to create
one manually via MatchRange.builder().
When the Consumer completes, SdkBuilder.build() is called immediately and its result
is passed to range(MatchRange).range - a consumer that will call methods on MatchRange.Builderrange(MatchRange)HeaderMatchMethod.Builder regex(String regex)
The value sent by the client must include the specified characters.
regex - The value sent by the client must include the specified characters.HeaderMatchMethod.Builder suffix(String suffix)
The value sent by the client must end with the specified characters.
suffix - The value sent by the client must end with the specified characters.Copyright © 2021. All rights reserved.