Class CfnUserSettings.CookieSpecificationProperty
Specifies a single cookie or set of cookies in an end user's browser.
Implements
Inherited Members
Namespace: Amazon.CDK.AwsWorkspacesweb
Assembly: Amazon.CDK.Lib.dll
Syntax (csharp)
public class CfnUserSettings.CookieSpecificationProperty : CfnUserSettings.ICookieSpecificationProperty
Syntax (vb)
Public Class CfnUserSettings.CookieSpecificationProperty Implements CfnUserSettings.ICookieSpecificationProperty
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 cookieSpecificationProperty = new CookieSpecificationProperty {
Domain = "domain",
// the properties below are optional
Name = "name",
Path = "path"
};
Synopsis
Constructors
| CookieSpecificationProperty() | Specifies a single cookie or set of cookies in an end user's browser. |
Properties
| Domain | The domain of the cookie. |
| Name | The name of the cookie. |
| Path | The path of the cookie. |
Constructors
CookieSpecificationProperty()
Specifies a single cookie or set of cookies in an end user's browser.
public CookieSpecificationProperty()
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 cookieSpecificationProperty = new CookieSpecificationProperty {
Domain = "domain",
// the properties below are optional
Name = "name",
Path = "path"
};
Properties
Domain
The domain of the cookie.
public string Domain { get; set; }
Property Value
Remarks
Name
The name of the cookie.
public string? Name { get; set; }
Property Value
Remarks
Path
The path of the cookie.
public string? Path { get; set; }