:doc:`ServiceCatalog <../../servicecatalog>` / Client / describe_service_action_execution_parameters

********************************************
describe_service_action_execution_parameters
********************************************



.. py:method:: ServiceCatalog.Client.describe_service_action_execution_parameters(**kwargs)

  

  Finds the default parameters for a specific self-service action on a specific provisioned product and returns a map of the results to the user.

  

  See also: `AWS API Documentation <https://docs.aws.amazon.com/goto/WebAPI/servicecatalog-2015-12-10/DescribeServiceActionExecutionParameters>`_  


  **Request Syntax**
  ::

    response = client.describe_service_action_execution_parameters(
        ProvisionedProductId='string',
        ServiceActionId='string',
        AcceptLanguage='string'
    )
    
  :type ProvisionedProductId: string
  :param ProvisionedProductId: **[REQUIRED]** 

    The identifier of the provisioned product.

    

  
  :type ServiceActionId: string
  :param ServiceActionId: **[REQUIRED]** 

    The self-service action identifier.

    

  
  :type AcceptLanguage: string
  :param AcceptLanguage: 

    The language code.

     

    
    * ``jp`` - Japanese
     
    * ``zh`` - Chinese
    

    

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

    
    ::

      {
          'ServiceActionParameters': [
              {
                  'Name': 'string',
                  'Type': 'string',
                  'DefaultValues': [
                      'string',
                  ]
              },
          ]
      }
      
    **Response Structure**

    

    - *(dict) --* 
      

      - **ServiceActionParameters** *(list) --* 

        The parameters of the self-service action.

        
        

        - *(dict) --* 

          Details of an execution parameter value that is passed to a self-service action when executed on a provisioned product.

          
          

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

            The name of the execution parameter.

            
          

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

            The execution parameter type.

            
          

          - **DefaultValues** *(list) --* 

            The default values for the execution parameter.

            
            

            - *(string) --* 
        
      
    
  
  **Exceptions**
  
  *   :py:class:`ServiceCatalog.Client.exceptions.InvalidParametersException`

  
  *   :py:class:`ServiceCatalog.Client.exceptions.ResourceNotFoundException`

  