EtlConfiguration

data class EtlConfiguration(val fromTime: Int, val lang: String, val logstore: String, val parameters: Map<String, String>? = null, val roleArn: String, val script: String, val sinks: List<EtlConfigurationSink>, val toTime: Int)

Constructors

Link copied to clipboard
constructor(fromTime: Int, lang: String, logstore: String, parameters: Map<String, String>? = null, roleArn: String, script: String, sinks: List<EtlConfigurationSink>, toTime: Int)

Types

Link copied to clipboard
object Companion

Properties

Link copied to clipboard

The beginning of the time range for transformation.

Link copied to clipboard

Data processing syntax type.

Link copied to clipboard

Destination Logstore Name.

Link copied to clipboard
val parameters: Map<String, String>? = null

Advanced parameter configuration.

Link copied to clipboard

The ARN role that authorizes writing to the target Logstore.

Link copied to clipboard

Processing script.

Link copied to clipboard

Processing result output target list See sink below.

Link copied to clipboard
val toTime: Int

The end of the time range for transformation.