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

**********************************************
list_service_actions_for_provisioning_artifact
**********************************************



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

  

  Returns a paginated list of self-service actions associated with the specified Product ID and Provisioning Artifact ID.

  

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


  **Request Syntax**
  ::

    response = client.list_service_actions_for_provisioning_artifact(
        ProductId='string',
        ProvisioningArtifactId='string',
        PageSize=123,
        PageToken='string',
        AcceptLanguage='string'
    )
    
  :type ProductId: string
  :param ProductId: **[REQUIRED]** 

    The product identifier. For example, ``prod-abcdzk7xy33qa``.

    

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

    The identifier of the provisioning artifact. For example, ``pa-4abcdjnxjj6ne``.

    

  
  :type PageSize: integer
  :param PageSize: 

    The maximum number of items to return with this call.

    

  
  :type PageToken: string
  :param PageToken: 

    The page token for the next set of results. To retrieve the first set of results, use null.

    

  
  :type AcceptLanguage: string
  :param AcceptLanguage: 

    The language code.

     

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

    

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

    
    ::

      {
          'ServiceActionSummaries': [
              {
                  'Id': 'string',
                  'Name': 'string',
                  'Description': 'string',
                  'DefinitionType': 'SSM_AUTOMATION'
              },
          ],
          'NextPageToken': 'string'
      }
      
    **Response Structure**

    

    - *(dict) --* 
      

      - **ServiceActionSummaries** *(list) --* 

        An object containing information about the self-service actions associated with the provisioning artifact.

        
        

        - *(dict) --* 

          Detailed information about the self-service action.

          
          

          - **Id** *(string) --* 

            The self-service action identifier.

            
          

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

            The self-service action name.

            
          

          - **Description** *(string) --* 

            The self-service action description.

            
          

          - **DefinitionType** *(string) --* 

            The self-service action definition type. For example, ``SSM_AUTOMATION``.

            
      
    
      

      - **NextPageToken** *(string) --* 

        The page token to use to retrieve the next set of results. If there are no additional results, this value is null.

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

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

  