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

Inherits:
Struct
  • Object
show all
Defined in:
gems/aws-sdk-workspacesweb/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)


396
397
398
399
400
401
402
# File 'gems/aws-sdk-workspacesweb/lib/aws-sdk-workspacesweb/types.rb', line 396

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

#nameString

The name of the cookie.

Returns:

  • (String)


396
397
398
399
400
401
402
# File 'gems/aws-sdk-workspacesweb/lib/aws-sdk-workspacesweb/types.rb', line 396

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

#pathString

The path of the cookie.

Returns:

  • (String)


396
397
398
399
400
401
402
# File 'gems/aws-sdk-workspacesweb/lib/aws-sdk-workspacesweb/types.rb', line 396

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