updateConditionalForwarder

Updates a conditional forwarder that has been set up for your Amazon Web Services directory.

Samples


fun main() { 
   //sampleStart 
   // The following example updates a conditional forwarder for a specified directory.
val resp = directoryClient.updateConditionalForwarder {
    directoryId = "d-92654abfed"
    remoteDomainName = "sales.example.com"
    dnsIpAddrs = listOf<String>(
        "172.168.101.11"
    )
} 
   //sampleEnd
}