Interface PathMatchType.Builder
-
- All Superinterfaces:
Buildable,CopyableBuilder<PathMatchType.Builder,PathMatchType>,SdkBuilder<PathMatchType.Builder,PathMatchType>,SdkPojo
- Enclosing class:
- PathMatchType
public static interface PathMatchType.Builder extends SdkPojo, CopyableBuilder<PathMatchType.Builder,PathMatchType>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description PathMatchType.Builderexact(String exact)An exact match of the path.PathMatchType.Builderprefix(String prefix)A prefix match of 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
PathMatchType.Builder exact(String exact)
An exact match of the path.
- Parameters:
exact- An exact match of the path.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
prefix
PathMatchType.Builder prefix(String prefix)
A prefix match of the path.
- Parameters:
prefix- A prefix match of the path.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
-