Parameter Declaration Args
data class ParameterDeclarationArgs(val default: Output<String>? = null, val description: Output<String>? = null, val name: Output<String>, val type: Output<Either<String, ParameterType>>) : ConvertibleToJava<ParameterDeclarationArgs>
Single topology parameter declaration. Declared parameters can and must be referenced throughout the topology and can optionally have default values to be used when they are not defined in the pipelines.
Constructors
Link copied to clipboard
constructor(default: Output<String>? = null, description: Output<String>? = null, name: Output<String>, type: Output<Either<String, ParameterType>>)