Class CfnUserSettings.CookieSynchronizationConfigurationProperty
The configuration that specifies which cookies should be synchronized from the end user's local browser to the remote browser.
Inheritance
System.Object
CfnUserSettings.CookieSynchronizationConfigurationProperty
Namespace: Amazon.CDK.AwsWorkspacesweb
Assembly: Amazon.CDK.Lib.dll
Syntax (csharp)
public class CookieSynchronizationConfigurationProperty : Object, CfnUserSettings.ICookieSynchronizationConfigurationProperty
Syntax (vb)
Public Class CookieSynchronizationConfigurationProperty
Inherits Object
Implements CfnUserSettings.ICookieSynchronizationConfigurationProperty
Remarks
ExampleMetadata: fixture=_generated
Examples
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
using Amazon.CDK.Aws_workspacesweb;
var cookieSynchronizationConfigurationProperty = new CookieSynchronizationConfigurationProperty {
Allowlist = new [] { new CookieSpecificationProperty {
Domain = "domain",
// the properties below are optional
Name = "name",
Path = "path"
} },
// the properties below are optional
Blocklist = new [] { new CookieSpecificationProperty {
Domain = "domain",
// the properties below are optional
Name = "name",
Path = "path"
} }
};
Synopsis
Constructors
CookieSynchronizationConfigurationProperty() |
Properties
Allowlist | The list of cookie specifications that are allowed to be synchronized to the remote browser. |
Blocklist | The list of cookie specifications that are blocked from being synchronized to the remote browser. |
Constructors
CookieSynchronizationConfigurationProperty()
public CookieSynchronizationConfigurationProperty()
Properties
Allowlist
The list of cookie specifications that are allowed to be synchronized to the remote browser.
public object Allowlist { get; set; }
Property Value
System.Object
Remarks
Blocklist
The list of cookie specifications that are blocked from being synchronized to the remote browser.
public object Blocklist { get; set; }
Property Value
System.Object