Class: Aws::WorkSpacesWeb::Types::CookieSpecification

Inherits:
Struct
  • Object
show all
Includes:
Structure
Defined in:
lib/aws-sdk-workspacesweb/types.rb

Overview

Specifies a single cookie or set of cookies in an end user’s browser.

Constant Summary collapse

SENSITIVE =
[:domain, :name, :path]

Instance Attribute Summary collapse

Instance Attribute Details

#domainString

The domain of the cookie.

Returns:

  • (String)


430
431
432
433
434
435
436
# File 'lib/aws-sdk-workspacesweb/types.rb', line 430

class CookieSpecification < Struct.new(
  :domain,
  :name,
  :path)
  SENSITIVE = [:domain, :name, :path]
  include Aws::Structure
end

#nameString

The name of the cookie.

Returns:

  • (String)


430
431
432
433
434
435
436
# File 'lib/aws-sdk-workspacesweb/types.rb', line 430

class CookieSpecification < Struct.new(
  :domain,
  :name,
  :path)
  SENSITIVE = [:domain, :name, :path]
  include Aws::Structure
end

#pathString

The path of the cookie.

Returns:

  • (String)


430
431
432
433
434
435
436
# File 'lib/aws-sdk-workspacesweb/types.rb', line 430

class CookieSpecification < Struct.new(
  :domain,
  :name,
  :path)
  SENSITIVE = [:domain, :name, :path]
  include Aws::Structure
end