disassociateFromConfiguration  
  abstract suspend fun disassociateFromConfiguration(input: DisassociateFromConfigurationRequest): DisassociateFromConfigurationResponse
Unlink a resource, for example a custom action, from a channel configuration.
Samples
fun main() { 
   //sampleStart 
   // Disassociate a custom action from a configuration
val resp = chatbotClient.disassociateFromConfiguration {
    resource = "arn:aws:chatbot::1234567890:custom-action/my-custom-action"
    chatConfiguration = "arn:aws:chatbot::1234567890:chat-configuration/slack-channel/my-channel"
} 
   //sampleEnd
}