Class: Aws::WorkSpacesWeb::Types::CookieSpecification
- Inherits:
-
Struct
- Object
- Struct
- Aws::WorkSpacesWeb::Types::CookieSpecification
- 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
-
#domain ⇒ String
The domain of the cookie.
-
#name ⇒ String
The name of the cookie.
-
#path ⇒ String
The path of the cookie.
Instance Attribute Details
#domain ⇒ String
The domain of the cookie.
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 |
#name ⇒ String
The name of the cookie.
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 |
#path ⇒ String
The path of the cookie.
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 |