Interface CfnUserSettings.ICookieSynchronizationConfigurationProperty
The configuration that specifies which cookies should be synchronized from the end user's local browser to the remote browser.
Namespace: Amazon.CDK.AwsWorkspacesweb
Assembly: Amazon.CDK.Lib.dll
Syntax (csharp)
public interface ICookieSynchronizationConfigurationProperty
Syntax (vb)
Public Interface 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
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. |
Properties
Allowlist
The list of cookie specifications that are allowed to be synchronized to the remote browser.
object Allowlist { get; }
Property Value
System.Object
Remarks
Blocklist
The list of cookie specifications that are blocked from being synchronized to the remote browser.
virtual object Blocklist { get; }
Property Value
System.Object