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

**************
get_parameters
**************



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

  

  Get information about one or more parameters by specifying multiple parameter names.

   

  .. note::

    

    To get information about a single parameter, you can use the  GetParameter operation instead.

    

   

  Parameter names can't contain spaces. The service removes any spaces specified for the beginning or end of a parameter name. If the specified name for a parameter contains spaces between characters, the request fails with a ``ValidationException`` error.

  

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


  **Request Syntax**
  ::

    response = client.get_parameters(
        Names=[
            'string',
        ],
        WithDecryption=True|False
    )
    
  :type Names: list
  :param Names: **[REQUIRED]** 

    The names or Amazon Resource Names (ARNs) of the parameters that you want to query. For parameters shared with you from another account, you must use the full ARNs.

     

    To query by parameter label, use ``"Name": "name:label"``. To query by parameter version, use ``"Name": "name:version"``.

     

    .. note::

      

      The results for ``GetParameters`` requests are listed in alphabetical order in query responses.

      

     

    For information about shared parameters, see `Working with shared parameters <https://docs.aws.amazon.com/systems-manager/latest/userguide/parameter-store-shared-parameters.html>`__ in the *Amazon Web Services Systems Manager User Guide*.

    

  
    - *(string) --* 

    

  :type WithDecryption: boolean
  :param WithDecryption: 

    Return decrypted secure string value. Return decrypted values for secure string parameters. This flag is ignored for ``String`` and ``StringList`` parameter types.

    

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

    
    ::

      {
          'Parameters': [
              {
                  'Name': 'string',
                  'Type': 'String'|'StringList'|'SecureString',
                  'Value': 'string',
                  'Version': 123,
                  'Selector': 'string',
                  'SourceResult': 'string',
                  'LastModifiedDate': datetime(2015, 1, 1),
                  'ARN': 'string',
                  'DataType': 'string'
              },
          ],
          'InvalidParameters': [
              'string',
          ]
      }
      
    **Response Structure**

    

    - *(dict) --* 
      

      - **Parameters** *(list) --* 

        A list of details for a parameter.

        
        

        - *(dict) --* 

          An Amazon Web Services Systems Manager parameter in Parameter Store.

          
          

          - **Name** *(string) --* 

            The name of the parameter.

            
          

          - **Type** *(string) --* 

            The type of parameter. Valid values include the following: ``String``, ``StringList``, and ``SecureString``.

             

            .. note::

              

              If type is ``StringList``, the system returns a comma-separated string with no spaces between commas in the ``Value`` field.

              

            
          

          - **Value** *(string) --* 

            The parameter value.

             

            .. note::

              

              If type is ``StringList``, the system returns a comma-separated string with no spaces between commas in the ``Value`` field.

              

            
          

          - **Version** *(integer) --* 

            The parameter version.

            
          

          - **Selector** *(string) --* 

            Either the version number or the label used to retrieve the parameter value. Specify selectors by using one of the following formats:

             

            parameter_name:version

             

            parameter_name:label

            
          

          - **SourceResult** *(string) --* 

            Applies to parameters that reference information in other Amazon Web Services services. ``SourceResult`` is the raw result or response from the source.

            
          

          - **LastModifiedDate** *(datetime) --* 

            Date the parameter was last changed or updated and the parameter version was created.

            
          

          - **ARN** *(string) --* 

            The Amazon Resource Name (ARN) of the parameter.

            
          

          - **DataType** *(string) --* 

            The data type of the parameter, such as ``text`` or ``aws:ec2:image``. The default is ``text``.

            
      
    
      

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

        A list of parameters that aren't formatted correctly or don't run during an execution.

        
        

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

  
  *   :py:class:`SSM.Client.exceptions.InternalServerError`

  