deleteLoadBalancerPolicy   
  abstract suspend fun deleteLoadBalancerPolicy(input: DeleteLoadBalancerPolicyRequest): DeleteLoadBalancerPolicyResponse
Deletes the specified policy from the specified load balancer. This policy must not be enabled for any listeners.
Samples
fun main() { 
   //sampleStart 
   // This example deletes the specified policy from the specified load balancer. The policy must not be
// enabled on any listener.
elasticLoadBalancingClient.deleteLoadBalancerPolicy {
    loadBalancerName = "my-load-balancer"
    policyName = "my-duration-cookie-policy"
} 
   //sampleEnd
}