DscConfigurationParameterArgs

data class DscConfigurationParameterArgs(val defaultValue: Output<String>? = null, val isMandatory: Output<Boolean>? = null, val position: Output<Int>? = null, val type: Output<String>? = null) : ConvertibleToJava<DscConfigurationParameterArgs>

Definition of the configuration parameter type.

Constructors

Link copied to clipboard
constructor(defaultValue: Output<String>? = null, isMandatory: Output<Boolean>? = null, position: Output<Int>? = null, type: Output<String>? = null)

Properties

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

Gets or sets the default value of parameter.

Link copied to clipboard
val isMandatory: Output<Boolean>? = null

Gets or sets a Boolean value to indicate whether the parameter is mandatory or not.

Link copied to clipboard
val position: Output<Int>? = null

Get or sets the position of the parameter.

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

Gets or sets the type of the parameter.

Functions

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