updateResponderGateway
abstract suspend fun updateResponderGateway(input: UpdateResponderGatewayRequest): UpdateResponderGatewayResponse
Updates the description, Auto Scaling group managed endpoint configuration, trust store configuration, and client routing policy of a responder gateway. This operation also updates the protocols list in the listener configuration.
You cannot change the domainName, port, and protocol values that you set when you create a responder gateway. To change any of them, delete the gateway and create a new one.
Samples
// Update responder gateway
val resp = rtbFabricClient.updateResponderGateway {
gatewayId = "rtb-gw-12345678"
description = "Updated responder gateway description"
port = 8080
protocol = Protocol.fromValue("HTTP")
clientToken = "12345678-1234-1234-1234-123456789012"
}Content copied to clipboard