BuildConfigurationArgs

data class BuildConfigurationArgs(val baseOs: Output<String>? = null, val environmentVariables: Output<List<EnvironmentVariableArgs>>? = null, val platform: Output<String>? = null, val platformVersion: Output<String>? = null, val preBuildSteps: Output<List<PreBuildStepArgs>>? = null) : ConvertibleToJava<BuildConfigurationArgs>

Configuration of the build.

Constructors

Link copied to clipboard
constructor(baseOs: Output<String>? = null, environmentVariables: Output<List<EnvironmentVariableArgs>>? = null, platform: Output<String>? = null, platformVersion: Output<String>? = null, preBuildSteps: Output<List<PreBuildStepArgs>>? = null)

Properties

Link copied to clipboard
val baseOs: Output<String>? = null

Base OS used to build and run the app.

Link copied to clipboard

List of environment variables to be passed to the build.

Link copied to clipboard
val platform: Output<String>? = null

Platform to be used to build and run the app.

Link copied to clipboard
val platformVersion: Output<String>? = null

Platform version to be used to build and run the app.

Link copied to clipboard
val preBuildSteps: Output<List<PreBuildStepArgs>>? = null

List of steps to perform before the build.

Functions

Link copied to clipboard
open override fun toJava(): BuildConfigurationArgs