Interface SystemInfo.Builder
- All Superinterfaces:
Buildable
,CopyableBuilder<SystemInfo.Builder,
,SystemInfo> SdkBuilder<SystemInfo.Builder,
,SystemInfo> SdkPojo
- Enclosing class:
SystemInfo
@Mutable
@NotThreadSafe
public static interface SystemInfo.Builder
extends SdkPojo, CopyableBuilder<SystemInfo.Builder,SystemInfo>
-
Method Summary
Modifier and TypeMethodDescriptioncpuArchitecture
(String cpuArchitecture) CPU architecture type for the server.fileSystemType
(String fileSystemType) File system type for the server.networkInfoList
(Collection<NetworkInfo> networkInfoList) Networking information related to a server.networkInfoList
(Consumer<NetworkInfo.Builder>... networkInfoList) Networking information related to a server.networkInfoList
(NetworkInfo... networkInfoList) Networking information related to a server.default SystemInfo.Builder
osInfo
(Consumer<OSInfo.Builder> osInfo) Operating system corresponding to a server.Operating system corresponding to a server.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 Details
-
cpuArchitecture
CPU architecture type for the server.
- Parameters:
cpuArchitecture
- CPU architecture type for the server.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
fileSystemType
File system type for the server.
- Parameters:
fileSystemType
- File system type for the server.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
networkInfoList
Networking information related to a server.
- Parameters:
networkInfoList
- Networking information related to a server.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
networkInfoList
Networking information related to a server.
- Parameters:
networkInfoList
- Networking information related to a server.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
networkInfoList
Networking information related to a server.
This is a convenience method that creates an instance of theNetworkInfo.Builder
avoiding the need to create one manually viaNetworkInfo.builder()
.When the
Consumer
completes,SdkBuilder.build()
is called immediately and its result is passed tonetworkInfoList(List<NetworkInfo>)
.- Parameters:
networkInfoList
- a consumer that will call methods onNetworkInfo.Builder
- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
-
osInfo
Operating system corresponding to a server.
- Parameters:
osInfo
- Operating system corresponding to a server.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
osInfo
Operating system corresponding to a server.
This is a convenience method that creates an instance of theOSInfo.Builder
avoiding the need to create one manually viaOSInfo.builder()
.When the
Consumer
completes,SdkBuilder.build()
is called immediately and its result is passed toosInfo(OSInfo)
.- Parameters:
osInfo
- a consumer that will call methods onOSInfo.Builder
- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
-