Class: Aws::WorkSpacesWeb::Types::CookieSpecification
- Inherits:
-
Struct
- Object
- Struct
- Aws::WorkSpacesWeb::Types::CookieSpecification
- 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
-
#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.
464 465 466 467 468 469 470 |
# File 'gems/aws-sdk-workspacesweb/lib/aws-sdk-workspacesweb/types.rb', line 464 class CookieSpecification < Struct.new( :domain, :name, :path) SENSITIVE = [:domain, :name, :path] include Aws::Structure end |
#name ⇒ String
The name of the cookie.
464 465 466 467 468 469 470 |
# File 'gems/aws-sdk-workspacesweb/lib/aws-sdk-workspacesweb/types.rb', line 464 class CookieSpecification < Struct.new( :domain, :name, :path) SENSITIVE = [:domain, :name, :path] include Aws::Structure end |
#path ⇒ String
The path of the cookie.
464 465 466 467 468 469 470 |
# File 'gems/aws-sdk-workspacesweb/lib/aws-sdk-workspacesweb/types.rb', line 464 class CookieSpecification < Struct.new( :domain, :name, :path) SENSITIVE = [:domain, :name, :path] include Aws::Structure end |