Interface Match.Builder
-
- All Superinterfaces:
Buildable,CopyableBuilder<Match.Builder,Match>,SdkBuilder<Match.Builder,Match>,SdkPojo
- Enclosing class:
- Match
public static interface Match.Builder extends SdkPojo, CopyableBuilder<Match.Builder,Match>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description Match.BuilderframeAddress(String frameAddress)The location in the profiling graph that contains a recommendation found during analysis.Match.BuildertargetFramesIndex(Integer targetFramesIndex)The target frame that triggered a match.Match.BuilderthresholdBreachValue(Double thresholdBreachValue)The value in the profile data that exceeded the recommendation threshold.-
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
-
frameAddress
Match.Builder frameAddress(String frameAddress)
The location in the profiling graph that contains a recommendation found during analysis.
- Parameters:
frameAddress- The location in the profiling graph that contains a recommendation found during analysis.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
targetFramesIndex
Match.Builder targetFramesIndex(Integer targetFramesIndex)
The target frame that triggered a match.
- Parameters:
targetFramesIndex- The target frame that triggered a match.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
thresholdBreachValue
Match.Builder thresholdBreachValue(Double thresholdBreachValue)
The value in the profile data that exceeded the recommendation threshold.
- Parameters:
thresholdBreachValue- The value in the profile data that exceeded the recommendation threshold.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
-