Interface LastError.Builder
-
- All Superinterfaces:
Buildable,CopyableBuilder<LastError.Builder,LastError>,SdkBuilder<LastError.Builder,LastError>,SdkPojo
- Enclosing class:
- LastError
public static interface LastError.Builder extends SdkPojo, CopyableBuilder<LastError.Builder,LastError>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description LastError.Buildercode(String code)The error code for the VPC endpoint error.LastError.Buildermessage(String message)The error message for the VPC endpoint error.-
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
-
message
LastError.Builder message(String message)
The error message for the VPC endpoint error.
- Parameters:
message- The error message for the VPC endpoint error.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
code
LastError.Builder code(String code)
The error code for the VPC endpoint error.
- Parameters:
code- The error code for the VPC endpoint error.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
-