Interface AnomalyObject.Builder
-
- All Superinterfaces:
Buildable,CopyableBuilder<AnomalyObject.Builder,AnomalyObject>,SdkBuilder<AnomalyObject.Builder,AnomalyObject>,SdkPojo
- Enclosing class:
- AnomalyObject
public static interface AnomalyObject.Builder extends SdkPojo, CopyableBuilder<AnomalyObject.Builder,AnomalyObject>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Default Methods Modifier and Type Method Description default AnomalyObject.Builderobservations(Consumer<Observations.Builder> observations)The recorded value.AnomalyObject.Builderobservations(Observations observations)The recorded value.AnomalyObject.BuilderprofileSubtype(String profileSubtype)The frequency of the anomaly.AnomalyObject.BuilderprofileSubtype(ProfileSubtype profileSubtype)The frequency of the anomaly.AnomalyObject.BuilderprofileType(String profileType)The type of behavior of the profile.AnomalyObject.BuilderprofileType(ProfileType profileType)The type of behavior of the profile.-
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
-
profileType
AnomalyObject.Builder profileType(String profileType)
The type of behavior of the profile.
- Parameters:
profileType- The type of behavior of the profile.- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
ProfileType,ProfileType
-
profileType
AnomalyObject.Builder profileType(ProfileType profileType)
The type of behavior of the profile.
- Parameters:
profileType- The type of behavior of the profile.- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
ProfileType,ProfileType
-
profileSubtype
AnomalyObject.Builder profileSubtype(String profileSubtype)
The frequency of the anomaly.
- Parameters:
profileSubtype- The frequency of the anomaly.- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
ProfileSubtype,ProfileSubtype
-
profileSubtype
AnomalyObject.Builder profileSubtype(ProfileSubtype profileSubtype)
The frequency of the anomaly.
- Parameters:
profileSubtype- The frequency of the anomaly.- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
ProfileSubtype,ProfileSubtype
-
observations
AnomalyObject.Builder observations(Observations observations)
The recorded value.
- Parameters:
observations- The recorded value.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
observations
default AnomalyObject.Builder observations(Consumer<Observations.Builder> observations)
The recorded value.
This is a convenience method that creates an instance of theObservations.Builderavoiding the need to create one manually viaObservations.builder().When the
Consumercompletes,SdkBuilder.build()is called immediately and its result is passed toobservations(Observations).- Parameters:
observations- a consumer that will call methods onObservations.Builder- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
observations(Observations)
-
-