Interface CookieMatchPattern.Builder
-
- All Superinterfaces:
Buildable,CopyableBuilder<CookieMatchPattern.Builder,CookieMatchPattern>,SdkBuilder<CookieMatchPattern.Builder,CookieMatchPattern>,SdkPojo
- Enclosing class:
- CookieMatchPattern
public static interface CookieMatchPattern.Builder extends SdkPojo, CopyableBuilder<CookieMatchPattern.Builder,CookieMatchPattern>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Default Methods Modifier and Type Method Description default CookieMatchPattern.Builderall(Consumer<All.Builder> all)Inspect all cookies.CookieMatchPattern.Builderall(All all)Inspect all cookies.CookieMatchPattern.BuilderexcludedCookies(String... excludedCookies)Inspect only the cookies whose keys don't match any of the strings specified here.CookieMatchPattern.BuilderexcludedCookies(Collection<String> excludedCookies)Inspect only the cookies whose keys don't match any of the strings specified here.CookieMatchPattern.BuilderincludedCookies(String... includedCookies)Inspect only the cookies that have a key that matches one of the strings specified here.CookieMatchPattern.BuilderincludedCookies(Collection<String> includedCookies)Inspect only the cookies that have a key that matches one of the strings specified here.-
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
-
all
CookieMatchPattern.Builder all(All all)
Inspect all cookies.
- Parameters:
all- Inspect all cookies.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
all
default CookieMatchPattern.Builder all(Consumer<All.Builder> all)
Inspect all cookies.
This is a convenience method that creates an instance of theAll.Builderavoiding the need to create one manually viaAll.builder().When the
Consumercompletes,SdkBuilder.build()is called immediately and its result is passed toall(All).- Parameters:
all- a consumer that will call methods onAll.Builder- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
all(All)
-
includedCookies
CookieMatchPattern.Builder includedCookies(Collection<String> includedCookies)
Inspect only the cookies that have a key that matches one of the strings specified here.
- Parameters:
includedCookies- Inspect only the cookies that have a key that matches one of the strings specified here.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
includedCookies
CookieMatchPattern.Builder includedCookies(String... includedCookies)
Inspect only the cookies that have a key that matches one of the strings specified here.
- Parameters:
includedCookies- Inspect only the cookies that have a key that matches one of the strings specified here.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
excludedCookies
CookieMatchPattern.Builder excludedCookies(Collection<String> excludedCookies)
Inspect only the cookies whose keys don't match any of the strings specified here.
- Parameters:
excludedCookies- Inspect only the cookies whose keys don't match any of the strings specified here.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
excludedCookies
CookieMatchPattern.Builder excludedCookies(String... excludedCookies)
Inspect only the cookies whose keys don't match any of the strings specified here.
- Parameters:
excludedCookies- Inspect only the cookies whose keys don't match any of the strings specified here.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
-