Interface CfnUserSettings.CookieSynchronizationConfigurationProperty

All Superinterfaces:
software.amazon.jsii.JsiiSerializable
All Known Implementing Classes:
CfnUserSettings.CookieSynchronizationConfigurationProperty.Jsii$Proxy
Enclosing class:
CfnUserSettings

@Stability(Stable) public static interface CfnUserSettings.CookieSynchronizationConfigurationProperty extends software.amazon.jsii.JsiiSerializable
The configuration that specifies which cookies should be synchronized from the end user's local browser to the remote 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.*;
 CookieSynchronizationConfigurationProperty cookieSynchronizationConfigurationProperty = CookieSynchronizationConfigurationProperty.builder()
         .allowlist(List.of(CookieSpecificationProperty.builder()
                 .domain("domain")
                 // the properties below are optional
                 .name("name")
                 .path("path")
                 .build()))
         // the properties below are optional
         .blocklist(List.of(CookieSpecificationProperty.builder()
                 .domain("domain")
                 // the properties below are optional
                 .name("name")
                 .path("path")
                 .build()))
         .build();
 

See Also: