Class: Aws::QApps::Types::BatchCreateCategoryInputCategory
- Inherits:
-
Struct
- Object
- Struct
- Aws::QApps::Types::BatchCreateCategoryInputCategory
- Defined in:
- gems/aws-sdk-qapps/lib/aws-sdk-qapps/types.rb
Overview
The category object to be created.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#color ⇒ String
The color to be associated with a category.
-
#id ⇒ String
The unique identifier to be associated with a category.
-
#title ⇒ String
The name of the category.
Instance Attribute Details
#color ⇒ String
The color to be associated with a category. The color must be a hexadecimal value of either 3 or 6 digits.
248 249 250 251 252 253 254 |
# File 'gems/aws-sdk-qapps/lib/aws-sdk-qapps/types.rb', line 248 class BatchCreateCategoryInputCategory < Struct.new( :id, :title, :color) SENSITIVE = [] include Aws::Structure end |
#id ⇒ String
The unique identifier to be associated with a category. If you don't include a value, the category is automatically assigned a unique identifier.
248 249 250 251 252 253 254 |
# File 'gems/aws-sdk-qapps/lib/aws-sdk-qapps/types.rb', line 248 class BatchCreateCategoryInputCategory < Struct.new( :id, :title, :color) SENSITIVE = [] include Aws::Structure end |
#title ⇒ String
The name of the category.
248 249 250 251 252 253 254 |
# File 'gems/aws-sdk-qapps/lib/aws-sdk-qapps/types.rb', line 248 class BatchCreateCategoryInputCategory < Struct.new( :id, :title, :color) SENSITIVE = [] include Aws::Structure end |