DeleteIndex.Builder Class
A builder for constructing DeleteIndex instances.
Rather than having to manually construct the options and instantiating a DeleteIndex directly, this builder may be used.
var del = DeleteIndex.Builder()
             .withIndexName('index_name')
             .withCallback(callback)
             .build();
Constructor
DeleteIndex.Builder
        ()
    
    Item Index
Methods
Methods
withCallback
        
            (
        chainable
    
    - 
                        
callback 
Set the callback to be executed when the operation completes.
Parameters:
- 
                        
callbackFunctionthe callback to execute
- 
                                    
errStringAn error message
 - 
                                    
responseBooleanwill always be true.
 
 - 
                                    
 
withIndexName
        
            (
        chainable
    
    - 
                        
indexName 
The name of the index to delete. If one is not supplied, all indexes are returned.
Parameters:
- 
                        
indexNameStringthe name of the index
 
