Show / Hide Table of Contents

Class CfnUserSettings.CookieSynchronizationConfigurationProperty

The configuration that specifies which cookies should be synchronized from the end user's local browser to the remote browser.

Inheritance
object
CfnUserSettings.CookieSynchronizationConfigurationProperty
Implements
CfnUserSettings.ICookieSynchronizationConfigurationProperty
Inherited Members
object.GetType()
object.MemberwiseClone()
object.ToString()
object.Equals(object)
object.Equals(object, object)
object.ReferenceEquals(object, object)
object.GetHashCode()
Namespace: Amazon.CDK.AwsWorkspacesweb
Assembly: Amazon.CDK.Lib.dll
Syntax (csharp)
public class CfnUserSettings.CookieSynchronizationConfigurationProperty : CfnUserSettings.ICookieSynchronizationConfigurationProperty
Syntax (vb)
Public Class CfnUserSettings.CookieSynchronizationConfigurationProperty Implements CfnUserSettings.ICookieSynchronizationConfigurationProperty
Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-workspacesweb-usersettings-cookiesynchronizationconfiguration.html

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 cookieSynchronizationConfigurationProperty = new CookieSynchronizationConfigurationProperty {
                 Allowlist = new [] { new CookieSpecificationProperty {
                     Domain = "domain",

                     // the properties below are optional
                     Name = "name",
                     Path = "path"
                 } },

                 // the properties below are optional
                 Blocklist = new [] { new CookieSpecificationProperty {
                     Domain = "domain",

                     // the properties below are optional
                     Name = "name",
                     Path = "path"
                 } }
             };

Synopsis

Constructors

CookieSynchronizationConfigurationProperty()

The configuration that specifies which cookies should be synchronized from the end user's local browser to the remote browser.

Properties

Allowlist

The list of cookie specifications that are allowed to be synchronized to the remote browser.

Blocklist

The list of cookie specifications that are blocked from being synchronized to the remote browser.

Constructors

CookieSynchronizationConfigurationProperty()

The configuration that specifies which cookies should be synchronized from the end user's local browser to the remote browser.

public CookieSynchronizationConfigurationProperty()
Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-workspacesweb-usersettings-cookiesynchronizationconfiguration.html

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 cookieSynchronizationConfigurationProperty = new CookieSynchronizationConfigurationProperty {
                 Allowlist = new [] { new CookieSpecificationProperty {
                     Domain = "domain",

                     // the properties below are optional
                     Name = "name",
                     Path = "path"
                 } },

                 // the properties below are optional
                 Blocklist = new [] { new CookieSpecificationProperty {
                     Domain = "domain",

                     // the properties below are optional
                     Name = "name",
                     Path = "path"
                 } }
             };

Properties

Allowlist

The list of cookie specifications that are allowed to be synchronized to the remote browser.

public object Allowlist { get; set; }
Property Value

object

Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-workspacesweb-usersettings-cookiesynchronizationconfiguration.html#cfn-workspacesweb-usersettings-cookiesynchronizationconfiguration-allowlist

Blocklist

The list of cookie specifications that are blocked from being synchronized to the remote browser.

public object? Blocklist { get; set; }
Property Value

object

Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-workspacesweb-usersettings-cookiesynchronizationconfiguration.html#cfn-workspacesweb-usersettings-cookiesynchronizationconfiguration-blocklist

Implements

CfnUserSettings.ICookieSynchronizationConfigurationProperty
Back to top Generated by DocFX