Interface AgentVersion.Builder
-
- All Superinterfaces:
Buildable,CopyableBuilder<AgentVersion.Builder,AgentVersion>,SdkBuilder<AgentVersion.Builder,AgentVersion>,SdkPojo
- Enclosing class:
- AgentVersion
public static interface AgentVersion.Builder extends SdkPojo, CopyableBuilder<AgentVersion.Builder,AgentVersion>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Default Methods Modifier and Type Method Description default AgentVersion.BuilderconfigurationManager(Consumer<StackConfigurationManager.Builder> configurationManager)The configuration manager.AgentVersion.BuilderconfigurationManager(StackConfigurationManager configurationManager)The configuration manager.AgentVersion.Builderversion(String version)The agent version.-
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
-
version
AgentVersion.Builder version(String version)
The agent version.
- Parameters:
version- The agent version.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
configurationManager
AgentVersion.Builder configurationManager(StackConfigurationManager configurationManager)
The configuration manager.
- Parameters:
configurationManager- The configuration manager.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
configurationManager
default AgentVersion.Builder configurationManager(Consumer<StackConfigurationManager.Builder> configurationManager)
The configuration manager.
This is a convenience method that creates an instance of theStackConfigurationManager.Builderavoiding the need to create one manually viaStackConfigurationManager.builder().When the
Consumercompletes,SdkBuilder.build()is called immediately and its result is passed toconfigurationManager(StackConfigurationManager).- Parameters:
configurationManager- a consumer that will call methods onStackConfigurationManager.Builder- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
configurationManager(StackConfigurationManager)
-
-