Interface CookieObject.Builder
-
- All Superinterfaces:
Buildable,CopyableBuilder<CookieObject.Builder,CookieObject>,SdkBuilder<CookieObject.Builder,CookieObject>,SdkPojo
- Enclosing class:
- CookieObject
public static interface CookieObject.Builder extends SdkPojo, CopyableBuilder<CookieObject.Builder,CookieObject>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description CookieObject.BuildercookiesAllowList(String... cookiesAllowList)The specific cookies to forward to your distribution's origin.CookieObject.BuildercookiesAllowList(Collection<String> cookiesAllowList)The specific cookies to forward to your distribution's origin.CookieObject.Builderoption(String option)Specifies which cookies to forward to the distribution's origin for a cache behavior:all,none, orallow-listto forward only the cookies specified in thecookiesAllowListparameter.CookieObject.Builderoption(ForwardValues option)Specifies which cookies to forward to the distribution's origin for a cache behavior:all,none, orallow-listto forward only the cookies specified in thecookiesAllowListparameter.-
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
-
option
CookieObject.Builder option(String option)
Specifies which cookies to forward to the distribution's origin for a cache behavior:
all,none, orallow-listto forward only the cookies specified in thecookiesAllowListparameter.- Parameters:
option- Specifies which cookies to forward to the distribution's origin for a cache behavior:all,none, orallow-listto forward only the cookies specified in thecookiesAllowListparameter.- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
ForwardValues,ForwardValues
-
option
CookieObject.Builder option(ForwardValues option)
Specifies which cookies to forward to the distribution's origin for a cache behavior:
all,none, orallow-listto forward only the cookies specified in thecookiesAllowListparameter.- Parameters:
option- Specifies which cookies to forward to the distribution's origin for a cache behavior:all,none, orallow-listto forward only the cookies specified in thecookiesAllowListparameter.- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
ForwardValues,ForwardValues
-
cookiesAllowList
CookieObject.Builder cookiesAllowList(Collection<String> cookiesAllowList)
The specific cookies to forward to your distribution's origin.
- Parameters:
cookiesAllowList- The specific cookies to forward to your distribution's origin.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
cookiesAllowList
CookieObject.Builder cookiesAllowList(String... cookiesAllowList)
The specific cookies to forward to your distribution's origin.
- Parameters:
cookiesAllowList- The specific cookies to forward to your distribution's origin.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
-