Interface Warning.Builder
-
- All Superinterfaces:
Buildable,CopyableBuilder<Warning.Builder,Warning>,SdkBuilder<Warning.Builder,Warning>,SdkPojo
- Enclosing class:
- Warning
public static interface Warning.Builder extends SdkPojo, CopyableBuilder<Warning.Builder,Warning>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description Warning.BuildererrorCode(String errorCode)The error code for the warning.Warning.Builderpages(Integer... pages)A list of the pages that the warning applies to.Warning.Builderpages(Collection<Integer> pages)A list of the pages that the warning applies to.-
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
-
errorCode
Warning.Builder errorCode(String errorCode)
The error code for the warning.
- Parameters:
errorCode- The error code for the warning.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
pages
Warning.Builder pages(Collection<Integer> pages)
A list of the pages that the warning applies to.
- Parameters:
pages- A list of the pages that the warning applies to.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
pages
Warning.Builder pages(Integer... pages)
A list of the pages that the warning applies to.
- Parameters:
pages- A list of the pages that the warning applies to.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
-