Interface App.Builder
-
- All Superinterfaces:
Buildable,CopyableBuilder<App.Builder,App>,SdkBuilder<App.Builder,App>,SdkPojo
- Enclosing class:
- App
public static interface App.Builder extends SdkPojo, CopyableBuilder<App.Builder,App>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description App.BuilderappName(String appName)The application's name.App.Builderport(Long port)The application's port number, for example80.App.Builderprotocol(String protocol)The IP protocol name or number.-
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
-
appName
App.Builder appName(String appName)
The application's name.
- Parameters:
appName- The application's name.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
protocol
App.Builder protocol(String protocol)
The IP protocol name or number. The name can be one of
tcp,udp, oricmp. For information on possible numbers, see Protocol Numbers.- Parameters:
protocol- The IP protocol name or number. The name can be one oftcp,udp, oricmp. For information on possible numbers, see Protocol Numbers.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
port
App.Builder port(Long port)
The application's port number, for example
80.- Parameters:
port- The application's port number, for example80.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
-