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
All Methods Instance Methods Abstract Methods Default Methods Modifier and Type Method Description DeploymentApplicationConfig.Builderapplication(String application)The Amazon Resource Name (ARN) of the robot application.DeploymentApplicationConfig.BuilderapplicationVersion(String applicationVersion)The version of the application.default DeploymentApplicationConfig.BuilderlaunchConfig(Consumer<DeploymentLaunchConfig.Builder> launchConfig)The launch configuration.DeploymentApplicationConfig.BuilderlaunchConfig(DeploymentLaunchConfig launchConfig)The launch configuration.-
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
-
application
DeploymentApplicationConfig.Builder application(String 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
DeploymentApplicationConfig.Builder applicationVersion(String 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
DeploymentApplicationConfig.Builder launchConfig(DeploymentLaunchConfig 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:
launchConfig(DeploymentLaunchConfig)
-
-