:doc:`SSM <../../ssm>` / Client / delete_parameters

*****************
delete_parameters
*****************



.. py:method:: SSM.Client.delete_parameters(**kwargs)

  

  Delete a list of parameters. After deleting a parameter, wait for at least 30 seconds to create a parameter with the same name.

  

  See also: `AWS API Documentation <https://docs.aws.amazon.com/goto/WebAPI/ssm-2014-11-06/DeleteParameters>`_  


  **Request Syntax**
  ::

    response = client.delete_parameters(
        Names=[
            'string',
        ]
    )
    
  :type Names: list
  :param Names: **[REQUIRED]** 

    The names of the parameters to delete. After deleting a parameter, wait for at least 30 seconds to create a parameter with the same name.

     

    .. note::

      

      You can't enter the Amazon Resource Name (ARN) for a parameter, only the parameter name itself.

      

    

  
    - *(string) --* 

    

  
  :rtype: dict
  :returns: 
    
    **Response Syntax**

    
    ::

      {
          'DeletedParameters': [
              'string',
          ],
          'InvalidParameters': [
              'string',
          ]
      }
      
    **Response Structure**

    

    - *(dict) --* 
      

      - **DeletedParameters** *(list) --* 

        The names of the deleted parameters.

        
        

        - *(string) --* 
    
      

      - **InvalidParameters** *(list) --* 

        The names of parameters that weren't deleted because the parameters aren't valid.

        
        

        - *(string) --* 
    
  
  **Exceptions**
  
  *   :py:class:`SSM.Client.exceptions.InternalServerError`

  