Interface NetworkGeoLocation.Builder
-
- All Superinterfaces:
Buildable,CopyableBuilder<NetworkGeoLocation.Builder,NetworkGeoLocation>,SdkBuilder<NetworkGeoLocation.Builder,NetworkGeoLocation>,SdkPojo
- Enclosing class:
- NetworkGeoLocation
public static interface NetworkGeoLocation.Builder extends SdkPojo, CopyableBuilder<NetworkGeoLocation.Builder,NetworkGeoLocation>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description NetworkGeoLocation.Buildercity(String city)The name of the city.NetworkGeoLocation.Buildercountry(String country)The name of the country.NetworkGeoLocation.Builderlatitude(Double latitude)The latitude information of the endpoint location.NetworkGeoLocation.Builderlongitude(Double longitude)The longitude information of the endpoint location.-
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
-
city
NetworkGeoLocation.Builder city(String city)
The name of the city.
- Parameters:
city- The name of the city.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
country
NetworkGeoLocation.Builder country(String country)
The name of the country.
- Parameters:
country- The name of the country.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
latitude
NetworkGeoLocation.Builder latitude(Double latitude)
The latitude information of the endpoint location.
- Parameters:
latitude- The latitude information of the endpoint location.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
longitude
NetworkGeoLocation.Builder longitude(Double longitude)
The longitude information of the endpoint location.
- Parameters:
longitude- The longitude information of the endpoint location.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
-