Interface Location.Builder
-
- All Superinterfaces:
Buildable,CopyableBuilder<Location.Builder,Location>,SdkBuilder<Location.Builder,Location>,SdkPojo
- Enclosing class:
- Location
public static interface Location.Builder extends SdkPojo, CopyableBuilder<Location.Builder,Location>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description Location.Builderaddress(String address)The physical address.Location.Builderlatitude(String latitude)The latitude.Location.Builderlongitude(String longitude)The longitude.-
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
-
address
Location.Builder address(String address)
The physical address.
- Parameters:
address- The physical address.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
latitude
Location.Builder latitude(String latitude)
The latitude.
- Parameters:
latitude- The latitude.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
longitude
Location.Builder longitude(String longitude)
The longitude.
- Parameters:
longitude- The longitude.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
-