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
Modifier and TypeMethodDescriptiondefault CookieMatchPattern.Builder
all
(Consumer<All.Builder> all) Inspect all cookies.Inspect all cookies.excludedCookies
(String... excludedCookies) Inspect only the cookies whose keys don't match any of the strings specified here.excludedCookies
(Collection<String> excludedCookies) Inspect only the cookies whose keys don't match any of the strings specified here.includedCookies
(String... includedCookies) Inspect only the cookies that have a key that matches one of the strings specified here.includedCookies
(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 Details
-
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
Inspect all cookies.
This is a convenience method that creates an instance of theAll.Builder
avoiding the need to create one manually viaAll.builder()
.When the
Consumer
completes,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:
-
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
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
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
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.
-