Class CfnUserSettings.CookieSpecificationProperty
Specifies a single cookie or set of cookies in an end user's browser.
Inheritance
System.Object
CfnUserSettings.CookieSpecificationProperty
Implements
Namespace: Amazon.CDK.AwsWorkspacesweb
Assembly: Amazon.CDK.Lib.dll
Syntax (csharp)
public class CookieSpecificationProperty : Object, CfnUserSettings.ICookieSpecificationProperty
Syntax (vb)
Public Class CookieSpecificationProperty
Inherits Object
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() |
Properties
Domain | The domain of the cookie. |
Name | The name of the cookie. |
Path | The path of the cookie. |
Constructors
CookieSpecificationProperty()
public CookieSpecificationProperty()
Properties
Domain
The domain of the cookie.
public string Domain { get; set; }
Property Value
System.String
Remarks
Name
The name of the cookie.
public string Name { get; set; }
Property Value
System.String
Remarks
Path
The path of the cookie.
public string Path { get; set; }
Property Value
System.String