interface CookieSpecificationProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.WorkSpacesWeb.Mixins.CfnUserSettingsPropsMixin.CookieSpecificationProperty |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awsworkspacesweb/mixins#CfnUserSettingsPropsMixin_CookieSpecificationProperty |
Java | software.amazon.awscdk.mixins.preview.services.workspacesweb.mixins.CfnUserSettingsPropsMixin.CookieSpecificationProperty |
Python | aws_cdk.mixins_preview.aws_workspacesweb.mixins.CfnUserSettingsPropsMixin.CookieSpecificationProperty |
TypeScript | @aws-cdk/mixins-preview » aws_workspacesweb » mixins » CfnUserSettingsPropsMixin » CookieSpecificationProperty |
Specifies a single cookie or set of cookies in an end user's 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 cookieSpecificationProperty: workspacesweb_mixins.CfnUserSettingsPropsMixin.CookieSpecificationProperty = {
domain: 'domain',
name: 'name',
path: 'path',
};
Properties
| Name | Type | Description |
|---|---|---|
| domain? | string | The domain of the cookie. |
| name? | string | The name of the cookie. |
| path? | string | The path of the cookie. |
domain?
Type:
string
(optional)
The domain of the cookie.
name?
Type:
string
(optional)
The name of the cookie.
path?
Type:
string
(optional)
The path of the cookie.

.NET
Go
Java
Python
TypeScript