Class: Aws::QApps::Types::CategoryInput
- Inherits:
-
Struct
- Object
- Struct
- Aws::QApps::Types::CategoryInput
- Defined in:
- gems/aws-sdk-qapps/lib/aws-sdk-qapps/types.rb
Overview
A label that web experience users associate with a library item. Web experience users use Categories to tag and filter library items.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#color ⇒ String
The color of the category, represented as a hexadecimal value of either 3 or 6 digits.
-
#id ⇒ String
The unique identifier of the category.
-
#title ⇒ String
The name of the category.
Instance Attribute Details
#color ⇒ String
The color of the category, represented as a hexadecimal value of either 3 or 6 digits.
483 484 485 486 487 488 489 |
# File 'gems/aws-sdk-qapps/lib/aws-sdk-qapps/types.rb', line 483 class CategoryInput < Struct.new( :id, :title, :color) SENSITIVE = [] include Aws::Structure end |
#id ⇒ String
The unique identifier of the category.
483 484 485 486 487 488 489 |
# File 'gems/aws-sdk-qapps/lib/aws-sdk-qapps/types.rb', line 483 class CategoryInput < Struct.new( :id, :title, :color) SENSITIVE = [] include Aws::Structure end |
#title ⇒ String
The name of the category.
483 484 485 486 487 488 489 |
# File 'gems/aws-sdk-qapps/lib/aws-sdk-qapps/types.rb', line 483 class CategoryInput < Struct.new( :id, :title, :color) SENSITIVE = [] include Aws::Structure end |