Interface DeploymentApplicationConfig.Builder
- All Superinterfaces:
 Buildable,CopyableBuilder<DeploymentApplicationConfig.Builder,,DeploymentApplicationConfig> SdkBuilder<DeploymentApplicationConfig.Builder,,DeploymentApplicationConfig> SdkPojo
- Enclosing class:
 DeploymentApplicationConfig
public static interface DeploymentApplicationConfig.Builder
extends SdkPojo, CopyableBuilder<DeploymentApplicationConfig.Builder,DeploymentApplicationConfig> 
- 
Method Summary
Modifier and TypeMethodDescriptionapplication(String application) The Amazon Resource Name (ARN) of the robot application.applicationVersion(String applicationVersion) The version of the application.launchConfig(Consumer<DeploymentLaunchConfig.Builder> launchConfig) The launch configuration.launchConfig(DeploymentLaunchConfig launchConfig) The launch configuration.Methods inherited from interface software.amazon.awssdk.utils.builder.CopyableBuilder
copyMethods inherited from interface software.amazon.awssdk.utils.builder.SdkBuilder
applyMutation, buildMethods inherited from interface software.amazon.awssdk.core.SdkPojo
equalsBySdkFields, sdkFields 
- 
Method Details
- 
application
The Amazon Resource Name (ARN) of the robot application.
- Parameters:
 application- The Amazon Resource Name (ARN) of the robot application.- Returns:
 - Returns a reference to this object so that method calls can be chained together.
 
 - 
applicationVersion
The version of the application.
- Parameters:
 applicationVersion- The version of the application.- Returns:
 - Returns a reference to this object so that method calls can be chained together.
 
 - 
launchConfig
The launch configuration.
- Parameters:
 launchConfig- The launch configuration.- Returns:
 - Returns a reference to this object so that method calls can be chained together.
 
 - 
launchConfig
default DeploymentApplicationConfig.Builder launchConfig(Consumer<DeploymentLaunchConfig.Builder> launchConfig) The launch configuration.
This is a convenience method that creates an instance of theDeploymentLaunchConfig.Builderavoiding the need to create one manually viaDeploymentLaunchConfig.builder().When the
Consumercompletes,SdkBuilder.build()is called immediately and its result is passed tolaunchConfig(DeploymentLaunchConfig).- Parameters:
 launchConfig- a consumer that will call methods onDeploymentLaunchConfig.Builder- Returns:
 - Returns a reference to this object so that method calls can be chained together.
 - See Also:
 
 
 -