Interface BatchCreateCategoryInputCategory.Builder
-
- All Superinterfaces:
Buildable,CopyableBuilder<BatchCreateCategoryInputCategory.Builder,BatchCreateCategoryInputCategory>,SdkBuilder<BatchCreateCategoryInputCategory.Builder,BatchCreateCategoryInputCategory>,SdkPojo
- Enclosing class:
- BatchCreateCategoryInputCategory
public static interface BatchCreateCategoryInputCategory.Builder extends SdkPojo, CopyableBuilder<BatchCreateCategoryInputCategory.Builder,BatchCreateCategoryInputCategory>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description BatchCreateCategoryInputCategory.Buildercolor(String color)The color to be associated with a category.BatchCreateCategoryInputCategory.Builderid(String id)The unique identifier to be associated with a category.BatchCreateCategoryInputCategory.Buildertitle(String title)The name of the category.-
Methods inherited from interface software.amazon.awssdk.utils.builder.CopyableBuilder
copy
-
Methods inherited from interface software.amazon.awssdk.utils.builder.SdkBuilder
applyMutation, build
-
Methods inherited from interface software.amazon.awssdk.core.SdkPojo
equalsBySdkFields, sdkFieldNameToField, sdkFields
-
-
-
-
Method Detail
-
id
BatchCreateCategoryInputCategory.Builder id(String id)
The unique identifier to be associated with a category. If you don't include a value, the category is automatically assigned a unique identifier.
- Parameters:
id- The unique identifier to be associated with a category. If you don't include a value, the category is automatically assigned a unique identifier.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
title
BatchCreateCategoryInputCategory.Builder title(String title)
The name of the category.
- Parameters:
title- The name of the category.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
color
BatchCreateCategoryInputCategory.Builder color(String color)
The color to be associated with a category. The color must be a hexadecimal value of either 3 or 6 digits.
- Parameters:
color- The color to be associated with a category. The color must be a hexadecimal value of either 3 or 6 digits.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
-