Interface DeletionWarning.Builder
-
- All Superinterfaces:
Buildable,CopyableBuilder<DeletionWarning.Builder,DeletionWarning>,SdkBuilder<DeletionWarning.Builder,DeletionWarning>,SdkPojo
- Enclosing class:
- DeletionWarning
public static interface DeletionWarning.Builder extends SdkPojo, CopyableBuilder<DeletionWarning.Builder,DeletionWarning>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description DeletionWarning.BuilderconfigurationId(String configurationId)The unique identifier of the configuration that produced a warning.DeletionWarning.BuilderwarningCode(Integer warningCode)The integer warning code associated with the warning message.DeletionWarning.BuilderwarningText(String warningText)A descriptive message of the warning the associated configuration ID produced.-
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
-
configurationId
DeletionWarning.Builder configurationId(String configurationId)
The unique identifier of the configuration that produced a warning.
- Parameters:
configurationId- The unique identifier of the configuration that produced a warning.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
warningCode
DeletionWarning.Builder warningCode(Integer warningCode)
The integer warning code associated with the warning message.
- Parameters:
warningCode- The integer warning code associated with the warning message.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
warningText
DeletionWarning.Builder warningText(String warningText)
A descriptive message of the warning the associated configuration ID produced.
- Parameters:
warningText- A descriptive message of the warning the associated configuration ID produced.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
-