Interface SuggestedFix.Builder
-
- All Superinterfaces:
Buildable,CopyableBuilder<SuggestedFix.Builder,SuggestedFix>,SdkBuilder<SuggestedFix.Builder,SuggestedFix>,SdkPojo
- Enclosing class:
- SuggestedFix
public static interface SuggestedFix.Builder extends SdkPojo, CopyableBuilder<SuggestedFix.Builder,SuggestedFix>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description SuggestedFix.Buildercode(String code)The suggested code to add to your file.SuggestedFix.Builderdescription(String description)A description of the suggested code fix and why it is being suggested.-
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
-
code
SuggestedFix.Builder code(String code)
The suggested code to add to your file.
- Parameters:
code- The suggested code to add to your file.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
description
SuggestedFix.Builder description(String description)
A description of the suggested code fix and why it is being suggested.
- Parameters:
description- A description of the suggested code fix and why it is being suggested.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
-