interface CookieSynchronizationConfigurationProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.WorkSpacesWeb.CfnUserSettings.CookieSynchronizationConfigurationProperty |
Go | github.com/aws/aws-cdk-go/awscdk/v2/awsworkspacesweb#CfnUserSettings_CookieSynchronizationConfigurationProperty |
Java | software.amazon.awscdk.services.workspacesweb.CfnUserSettings.CookieSynchronizationConfigurationProperty |
Python | aws_cdk.aws_workspacesweb.CfnUserSettings.CookieSynchronizationConfigurationProperty |
TypeScript | aws-cdk-lib » aws_workspacesweb » CfnUserSettings » CookieSynchronizationConfigurationProperty |
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 { aws_workspacesweb as workspacesweb } from 'aws-cdk-lib';
const cookieSynchronizationConfigurationProperty: workspacesweb.CfnUserSettings.CookieSynchronizationConfigurationProperty = {
allowlist: [{
domain: 'domain',
// the properties below are optional
name: 'name',
path: 'path',
}],
// the properties below are optional
blocklist: [{
domain: 'domain',
// the properties below are optional
name: 'name',
path: 'path',
}],
};
Properties
| Name | Type | Description |
|---|---|---|
| allowlist | IResolvable | (IResolvable | Cookie)[] | The list of cookie specifications that are allowed to be synchronized to the remote browser. |
| blocklist? | IResolvable | (IResolvable | Cookie)[] | The list of cookie specifications that are blocked from being synchronized to the remote browser. |
allowlist
Type:
IResolvable | (IResolvable | Cookie)[]
The list of cookie specifications that are allowed to be synchronized to the remote browser.
blocklist?
Type:
IResolvable | (IResolvable | Cookie)[]
(optional)
The list of cookie specifications that are blocked from being synchronized to the remote browser.

.NET
Go
Java
Python
TypeScript