createInboundExternalLink

Creates an inbound external link.

Samples

import aws.sdk.kotlin.services.rtbfabric.model.LinkApplicationLogConfiguration
import aws.sdk.kotlin.services.rtbfabric.model.LinkApplicationLogSampling
import aws.sdk.kotlin.services.rtbfabric.model.LinkLogSettings

fun main() { 
   //sampleStart 
   // Create an inbound external link for a responder gateway
val resp = rtbFabricClient.createInboundExternalLink {
    gatewayId = "rtb-gw-12345678"
    clientToken = "randomClientToken"
    logSettings = LinkLogSettings {
        applicationLogs = LinkApplicationLogConfiguration {
            sampling = LinkApplicationLogSampling {
                errorLog = 100.0.toDouble()
                filterLog = 0.0.toDouble()
            }
        }
    }
} 
   //sampleEnd
}