Interface CookieSynchronizationConfiguration.Builder
-
- All Superinterfaces:
Buildable,CopyableBuilder<CookieSynchronizationConfiguration.Builder,CookieSynchronizationConfiguration>,SdkBuilder<CookieSynchronizationConfiguration.Builder,CookieSynchronizationConfiguration>,SdkPojo
- Enclosing class:
- CookieSynchronizationConfiguration
public static interface CookieSynchronizationConfiguration.Builder extends SdkPojo, CopyableBuilder<CookieSynchronizationConfiguration.Builder,CookieSynchronizationConfiguration>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description CookieSynchronizationConfiguration.Builderallowlist(Collection<CookieSpecification> allowlist)The list of cookie specifications that are allowed to be synchronized to the remote browser.CookieSynchronizationConfiguration.Builderallowlist(Consumer<CookieSpecification.Builder>... allowlist)The list of cookie specifications that are allowed to be synchronized to the remote browser.CookieSynchronizationConfiguration.Builderallowlist(CookieSpecification... allowlist)The list of cookie specifications that are allowed to be synchronized to the remote browser.CookieSynchronizationConfiguration.Builderblocklist(Collection<CookieSpecification> blocklist)The list of cookie specifications that are blocked from being synchronized to the remote browser.CookieSynchronizationConfiguration.Builderblocklist(Consumer<CookieSpecification.Builder>... blocklist)The list of cookie specifications that are blocked from being synchronized to the remote browser.CookieSynchronizationConfiguration.Builderblocklist(CookieSpecification... blocklist)The list of cookie specifications that are blocked from being synchronized to the remote browser.-
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
-
allowlist
CookieSynchronizationConfiguration.Builder allowlist(Collection<CookieSpecification> allowlist)
The list of cookie specifications that are allowed to be synchronized to the remote browser.
- Parameters:
allowlist- The list of cookie specifications that are allowed to be synchronized to the remote browser.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
allowlist
CookieSynchronizationConfiguration.Builder allowlist(CookieSpecification... allowlist)
The list of cookie specifications that are allowed to be synchronized to the remote browser.
- Parameters:
allowlist- The list of cookie specifications that are allowed to be synchronized to the remote browser.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
allowlist
CookieSynchronizationConfiguration.Builder allowlist(Consumer<CookieSpecification.Builder>... allowlist)
The list of cookie specifications that are allowed to be synchronized to the remote browser.
This is a convenience method that creates an instance of theCookieSpecification.Builderavoiding the need to create one manually viaCookieSpecification.builder().When the
Consumercompletes,SdkBuilder.build()is called immediately and its result is passed to#allowlist(List.) - Parameters:
allowlist- a consumer that will call methods onCookieSpecification.Builder- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
#allowlist(java.util.Collection)
-
blocklist
CookieSynchronizationConfiguration.Builder blocklist(Collection<CookieSpecification> blocklist)
The list of cookie specifications that are blocked from being synchronized to the remote browser.
- Parameters:
blocklist- The list of cookie specifications that are blocked from being synchronized to the remote browser.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
blocklist
CookieSynchronizationConfiguration.Builder blocklist(CookieSpecification... blocklist)
The list of cookie specifications that are blocked from being synchronized to the remote browser.
- Parameters:
blocklist- The list of cookie specifications that are blocked from being synchronized to the remote browser.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
blocklist
CookieSynchronizationConfiguration.Builder blocklist(Consumer<CookieSpecification.Builder>... blocklist)
The list of cookie specifications that are blocked from being synchronized to the remote browser.
This is a convenience method that creates an instance of theCookieSpecification.Builderavoiding the need to create one manually viaCookieSpecification.builder().When the
Consumercompletes,SdkBuilder.build()is called immediately and its result is passed to#blocklist(List.) - Parameters:
blocklist- a consumer that will call methods onCookieSpecification.Builder- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
#blocklist(java.util.Collection)
-
-