RandomSamplingAlgorithmArgs

data class RandomSamplingAlgorithmArgs(val rule: Output<Either<String, RandomSamplingAlgorithmRule>>? = null, val samplingAlgorithmType: Output<String>, val seed: Output<Int>? = null) : ConvertibleToJava<RandomSamplingAlgorithmArgs>

Defines a Sampling Algorithm that generates values randomly

Constructors

Link copied to clipboard
constructor(rule: Output<Either<String, RandomSamplingAlgorithmRule>>? = null, samplingAlgorithmType: Output<String>, seed: Output<Int>? = null)

Properties

Link copied to clipboard
val rule: Output<Either<String, RandomSamplingAlgorithmRule>>? = null

The specific type of random algorithm

Link copied to clipboard

Expected value is 'Random'.

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

An optional integer to use as the seed for random number generation

Functions

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