UserSettingsCookieSynchronizationConfigurationBlocklist constructor

const UserSettingsCookieSynchronizationConfigurationBlocklist({
  1. required Input<String> domain,
  2. Input<String?>? name,
  3. Input<String?>? path,
})

Creates a new UserSettingsCookieSynchronizationConfigurationBlocklist. domain Domain of the cookie. name Name of the cookie. path Path of the cookie.

Implementation

const UserSettingsCookieSynchronizationConfigurationBlocklist({
  required this.domain,
  this.name,
  this.path,
});