deleteNotifyConfiguration
inline suspend fun PinpointSmsVoiceV2Client.deleteNotifyConfiguration(crossinline block: DeleteNotifyConfigurationRequest.Builder.() -> Unit): DeleteNotifyConfigurationResponse
Deletes an existing notify configuration.
If deletion protection is enabled, an error is returned.
Samples
fun main() {
//sampleStart
// Delete an existing notify configuration.
val resp = pinpointSmsVoiceV2Client.deleteNotifyConfiguration {
notifyConfigurationId = "nc-1234567890abcdef0"
}
//sampleEnd
}