interface CookieSynchronizationConfigurationProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.CfnPropertyMixins.AWS.WorkSpacesWeb.CfnUserSettingsPropsMixin.CookieSynchronizationConfigurationProperty |
Go | github.com/aws/aws-cdk-go/awscdkcfnpropertymixins/v2/awsworkspacesweb#CfnUserSettingsPropsMixin_CookieSynchronizationConfigurationProperty |
Java | software.amazon.awscdk.cfnpropertymixins.services.workspacesweb.CfnUserSettingsPropsMixin.CookieSynchronizationConfigurationProperty |
Python | aws_cdk.cfn_property_mixins.aws_workspacesweb.CfnUserSettingsPropsMixin.CookieSynchronizationConfigurationProperty |
TypeScript | @aws-cdk/cfn-property-mixins » aws_workspacesweb » 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 { aws_workspacesweb as workspacesweb } from '@aws-cdk/cfn-property-mixins';
const cookieSynchronizationConfigurationProperty: workspacesweb.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