Interface CalculatedAttributeValue.Builder
-
- All Superinterfaces:
Buildable,CopyableBuilder<CalculatedAttributeValue.Builder,CalculatedAttributeValue>,SdkBuilder<CalculatedAttributeValue.Builder,CalculatedAttributeValue>,SdkPojo
- Enclosing class:
- CalculatedAttributeValue
public static interface CalculatedAttributeValue.Builder extends SdkPojo, CopyableBuilder<CalculatedAttributeValue.Builder,CalculatedAttributeValue>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description CalculatedAttributeValue.BuildercalculatedAttributeName(String calculatedAttributeName)The unique name of the calculated attribute.CalculatedAttributeValue.BuilderdisplayName(String displayName)The display name of the calculated attribute.CalculatedAttributeValue.BuilderisDataPartial(String isDataPartial)Indicates whether the calculated attribute's value is based on partial data.CalculatedAttributeValue.BuilderprofileId(String profileId)The profile id belonging to this calculated attribute value.CalculatedAttributeValue.Buildervalue(String value)The value of the calculated attribute.-
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
-
calculatedAttributeName
CalculatedAttributeValue.Builder calculatedAttributeName(String calculatedAttributeName)
The unique name of the calculated attribute.
- Parameters:
calculatedAttributeName- The unique name of the calculated attribute.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
displayName
CalculatedAttributeValue.Builder displayName(String displayName)
The display name of the calculated attribute.
- Parameters:
displayName- The display name of the calculated attribute.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
isDataPartial
CalculatedAttributeValue.Builder isDataPartial(String isDataPartial)
Indicates whether the calculated attribute's value is based on partial data. If the data is partial, it is set to true.
- Parameters:
isDataPartial- Indicates whether the calculated attribute's value is based on partial data. If the data is partial, it is set to true.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
profileId
CalculatedAttributeValue.Builder profileId(String profileId)
The profile id belonging to this calculated attribute value.
- Parameters:
profileId- The profile id belonging to this calculated attribute value.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
value
CalculatedAttributeValue.Builder value(String value)
The value of the calculated attribute.
- Parameters:
value- The value of the calculated attribute.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
-