Interface CookieSpecification.Builder
-
- All Superinterfaces:
Buildable,CopyableBuilder<CookieSpecification.Builder,CookieSpecification>,SdkBuilder<CookieSpecification.Builder,CookieSpecification>,SdkPojo
- Enclosing class:
- CookieSpecification
public static interface CookieSpecification.Builder extends SdkPojo, CopyableBuilder<CookieSpecification.Builder,CookieSpecification>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description CookieSpecification.Builderdomain(String domain)The domain of the cookie.CookieSpecification.Buildername(String name)The name of the cookie.CookieSpecification.Builderpath(String path)The path of the cookie.-
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, sdkFieldNameToField, sdkFields
-
-
-
-
Method Detail
-
domain
CookieSpecification.Builder domain(String domain)
The domain of the cookie.
- Parameters:
domain- The domain of the cookie.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
name
CookieSpecification.Builder name(String name)
The name of the cookie.
- Parameters:
name- The name of the cookie.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
path
CookieSpecification.Builder path(String path)
The path of the cookie.
- Parameters:
path- The path of the cookie.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
-