Interface SchemaAttribute.Builder
-
- All Superinterfaces:
Buildable,CopyableBuilder<SchemaAttribute.Builder,SchemaAttribute>,SdkBuilder<SchemaAttribute.Builder,SchemaAttribute>,SdkPojo
- Enclosing class:
- SchemaAttribute
public static interface SchemaAttribute.Builder extends SdkPojo, CopyableBuilder<SchemaAttribute.Builder,SchemaAttribute>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description SchemaAttribute.BuilderattributeName(String attributeName)The name of the dataset field.SchemaAttribute.BuilderattributeType(String attributeType)The data type of the field.SchemaAttribute.BuilderattributeType(AttributeType attributeType)The data type of the field.-
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, sdkFields
-
-
-
-
Method Detail
-
attributeName
SchemaAttribute.Builder attributeName(String attributeName)
The name of the dataset field.
- Parameters:
attributeName- The name of the dataset field.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
attributeType
SchemaAttribute.Builder attributeType(String attributeType)
The data type of the field.
For a related time series dataset, other than date, item_id, and forecast dimensions attributes, all attributes should be of numerical type (integer/float).
- Parameters:
attributeType- The data type of the field.For a related time series dataset, other than date, item_id, and forecast dimensions attributes, all attributes should be of numerical type (integer/float).
- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
AttributeType,AttributeType
-
attributeType
SchemaAttribute.Builder attributeType(AttributeType attributeType)
The data type of the field.
For a related time series dataset, other than date, item_id, and forecast dimensions attributes, all attributes should be of numerical type (integer/float).
- Parameters:
attributeType- The data type of the field.For a related time series dataset, other than date, item_id, and forecast dimensions attributes, all attributes should be of numerical type (integer/float).
- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
AttributeType,AttributeType
-
-