interface CookieSynchronizationConfigurationProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.WorkSpacesWeb.Mixins.CfnUserSettingsPropsMixin.CookieSynchronizationConfigurationProperty |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awsworkspacesweb/mixins#CfnUserSettingsPropsMixin_CookieSynchronizationConfigurationProperty |
Java | software.amazon.awscdk.mixins.preview.services.workspacesweb.mixins.CfnUserSettingsPropsMixin.CookieSynchronizationConfigurationProperty |
Python | aws_cdk.mixins_preview.aws_workspacesweb.mixins.CfnUserSettingsPropsMixin.CookieSynchronizationConfigurationProperty |
TypeScript | @aws-cdk/mixins-preview » aws_workspacesweb » mixins » CfnUserSettingsPropsMixin » 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 { mixins as workspacesweb_mixins } from '@aws-cdk/mixins-preview/aws-workspacesweb';
const cookieSynchronizationConfigurationProperty: workspacesweb_mixins.CfnUserSettingsPropsMixin.CookieSynchronizationConfigurationProperty = {
allowlist: [{
domain: 'domain',
name: 'name',
path: 'path',
}],
blocklist: [{
domain: 'domain',
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)[]
(optional)
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