Interface CfnUserSettings.CookieSpecificationProperty
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnUserSettings.CookieSpecificationProperty.Jsii$Proxy
- Enclosing class:
CfnUserSettings
@Stability(Stable)
public static interface CfnUserSettings.CookieSpecificationProperty
extends software.amazon.jsii.JsiiSerializable
Specifies a single cookie or set of cookies in an end user's browser.
Example:
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import software.amazon.awscdk.services.workspacesweb.*;
CookieSpecificationProperty cookieSpecificationProperty = CookieSpecificationProperty.builder()
.domain("domain")
// the properties below are optional
.name("name")
.path("path")
.build();
- See Also:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forCfnUserSettings.CookieSpecificationPropertystatic final classAn implementation forCfnUserSettings.CookieSpecificationProperty -
Method Summary
Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getDomain
The domain of the cookie.- See Also:
-
getName
The name of the cookie.- See Also:
-
getPath
The path of the cookie.- See Also:
-
builder
-