Interface HttpPathMatch.Builder
-
- All Superinterfaces:
Buildable,CopyableBuilder<HttpPathMatch.Builder,HttpPathMatch>,SdkBuilder<HttpPathMatch.Builder,HttpPathMatch>,SdkPojo
- Enclosing class:
- HttpPathMatch
public static interface HttpPathMatch.Builder extends SdkPojo, CopyableBuilder<HttpPathMatch.Builder,HttpPathMatch>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description HttpPathMatch.Builderexact(String exact)The exact path to match on.HttpPathMatch.Builderregex(String regex)The regex used to match the path.-
Methods inherited from interface software.amazon.awssdk.utils.builder.CopyableBuilder
copy
-
Methods inherited from interface software.amazon.awssdk.utils.builder.SdkBuilder
applyMutation, build
-
Methods inherited from interface software.amazon.awssdk.core.SdkPojo
equalsBySdkFields, sdkFields
-
-
-
-
Method Detail
-
exact
HttpPathMatch.Builder exact(String exact)
The exact path to match on.
- Parameters:
exact- The exact path to match on.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
regex
HttpPathMatch.Builder regex(String regex)
The regex used to match the path.
- Parameters:
regex- The regex used to match the path.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
-