Interface VersionInfo.Builder
-
- All Superinterfaces:
Buildable,CopyableBuilder<VersionInfo.Builder,VersionInfo>,SdkBuilder<VersionInfo.Builder,VersionInfo>,SdkPojo
- Enclosing class:
- VersionInfo
public static interface VersionInfo.Builder extends SdkPojo, CopyableBuilder<VersionInfo.Builder,VersionInfo>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description VersionInfo.BuilderagentHash(String agentHash)The Git commit hash for the Amazon ECS container agent build on the amazon-ecs-agent GitHub repository.VersionInfo.BuilderagentVersion(String agentVersion)The version number of the Amazon ECS container agent.VersionInfo.BuilderdockerVersion(String dockerVersion)The Docker version that's running on the container instance.-
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
-
agentVersion
VersionInfo.Builder agentVersion(String agentVersion)
The version number of the Amazon ECS container agent.
- Parameters:
agentVersion- The version number of the Amazon ECS container agent.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
agentHash
VersionInfo.Builder agentHash(String agentHash)
The Git commit hash for the Amazon ECS container agent build on the amazon-ecs-agent GitHub repository.
- Parameters:
agentHash- The Git commit hash for the Amazon ECS container agent build on the amazon-ecs-agent GitHub repository.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
dockerVersion
VersionInfo.Builder dockerVersion(String dockerVersion)
The Docker version that's running on the container instance.
- Parameters:
dockerVersion- The Docker version that's running on the container instance.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
-