com.svix.kotlin.models.RedshiftConfig.kt Maven / Gradle / Ivy
/**
* Svix API
* No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
*
* The version of the OpenAPI document: 1.1.1
*
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
* https://openapi-generator.tech
* Do not edit the class manually.
*/
package com.svix.kotlin.models
import com.squareup.moshi.Json
/**
* Configuration parameters for defining a Redshift sink.
* @param accessKeyId
* @param clusterIdentifier
* @param dbUser
* @param region
* @param secretAccessKey
* @param dbName Database name. Only required if not using transformations.
* @param schemaName Schema name. Only used if not using transformations.
* @param tableName Table name. Only required if not using transformations.
*/
data class RedshiftConfig (
@Json(name = "accessKeyId")
val accessKeyId: kotlin.String,
@Json(name = "clusterIdentifier")
val clusterIdentifier: kotlin.String,
@Json(name = "dbUser")
val dbUser: kotlin.String,
@Json(name = "region")
val region: kotlin.String,
@Json(name = "secretAccessKey")
val secretAccessKey: kotlin.String,
/* Database name. Only required if not using transformations. */
@Json(name = "dbName")
val dbName: kotlin.String? = null,
/* Schema name. Only used if not using transformations. */
@Json(name = "schemaName")
val schemaName: kotlin.String? = null,
/* Table name. Only required if not using transformations. */
@Json(name = "tableName")
val tableName: kotlin.String? = null
)