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