Interface Country.Builder
-
- All Superinterfaces:
Buildable,CopyableBuilder<Country.Builder,Country>,SdkBuilder<Country.Builder,Country>,SdkPojo
- Enclosing class:
- Country
public static interface Country.Builder extends SdkPojo, CopyableBuilder<Country.Builder,Country>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description Country.Buildercode2(String code2)Country, represented by its alpha 2-character code.Country.Buildercode3(String code3)Country, represented by its alpha t-character code.Country.Buildername(String name)Name of the country.-
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
-
code2
Country.Builder code2(String code2)
Country, represented by its alpha 2-character code.
- Parameters:
code2- Country, represented by its alpha 2-character code.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
code3
Country.Builder code3(String code3)
Country, represented by its alpha t-character code.
- Parameters:
code3- Country, represented by its alpha t-character code.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
name
Country.Builder name(String name)
Name of the country.
- Parameters:
name- Name of the country.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
-