Interface SoftwareInformation.Builder
-
- All Superinterfaces:
Buildable,CopyableBuilder<SoftwareInformation.Builder,SoftwareInformation>,SdkBuilder<SoftwareInformation.Builder,SoftwareInformation>,SdkPojo
- Enclosing class:
- SoftwareInformation
public static interface SoftwareInformation.Builder extends SdkPojo, CopyableBuilder<SoftwareInformation.Builder,SoftwareInformation>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description SoftwareInformation.BuilderinstalledVersion(String installedVersion)The version of the software currently installed on the device.SoftwareInformation.BuilderinstallingVersion(String installingVersion)The version of the software being installed on the device.SoftwareInformation.BuilderinstallState(String installState)The state of the software that is installed or that is being installed on the device.-
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
-
installState
SoftwareInformation.Builder installState(String installState)
The state of the software that is installed or that is being installed on the device.
- Parameters:
installState- The state of the software that is installed or that is being installed on the device.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
installedVersion
SoftwareInformation.Builder installedVersion(String installedVersion)
The version of the software currently installed on the device.
- Parameters:
installedVersion- The version of the software currently installed on the device.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
installingVersion
SoftwareInformation.Builder installingVersion(String installingVersion)
The version of the software being installed on the device.
- Parameters:
installingVersion- The version of the software being installed on the device.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
-