:doc:`Connect <../../connect>` / Client / list_contact_flow_module_aliases

********************************
list_contact_flow_module_aliases
********************************



.. py:method:: Connect.Client.list_contact_flow_module_aliases(**kwargs)

  

  Lists all aliases associated with a contact flow module, showing their current version mappings and metadata.

  

  See also: `AWS API Documentation <https://docs.aws.amazon.com/goto/WebAPI/connect-2017-08-08/ListContactFlowModuleAliases>`_  


  **Request Syntax**
  ::

    response = client.list_contact_flow_module_aliases(
        InstanceId='string',
        ContactFlowModuleId='string',
        NextToken='string',
        MaxResults=123
    )
    
  :type InstanceId: string
  :param InstanceId: **[REQUIRED]** 

    The identifier of the Amazon Connect instance. You can `find the instance ID <https://docs.aws.amazon.com/connect/latest/adminguide/find-instance-arn.html>`__ in the Amazon Resource Name (ARN) of the instance.

    

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

    The identifier of the flow module.

    

  
  :type NextToken: string
  :param NextToken: 

    The token for the next set of results. Use the value returned in the previous response in the next request to retrieve the next set of results.

    

  
  :type MaxResults: integer
  :param MaxResults: 

    The maximum number of results to return per page.

    

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

    
    ::

      {
          'ContactFlowModuleAliasSummaryList': [
              {
                  'Arn': 'string',
                  'AliasId': 'string',
                  'Version': 123,
                  'AliasName': 'string',
                  'AliasDescription': 'string',
                  'LastModifiedTime': datetime(2015, 1, 1)
              },
          ],
          'NextToken': 'string'
      }
      
    **Response Structure**

    

    - *(dict) --* 
      

      - **ContactFlowModuleAliasSummaryList** *(list) --* 

        Information about the flow module aliases.

        
        

        - *(dict) --* 

          Contains information about an alias.

          
          

          - **Arn** *(string) --* 

            The Amazon Resource Name (ARN) of the flow module alias.

            
          

          - **AliasId** *(string) --* 

            The identifier of the alias.

            
          

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

            The version of the flow module.

            
          

          - **AliasName** *(string) --* 

            The name of the alias.

            
          

          - **AliasDescription** *(string) --* 

            The description of the alias.

            
          

          - **LastModifiedTime** *(datetime) --* 

            The timestamp when this resource was last modified.

            
      
    
      

      - **NextToken** *(string) --* 

        If there are additional results, this is the token for the next set of results.

        
  
  **Exceptions**
  
  *   :py:class:`Connect.Client.exceptions.AccessDeniedException`

  
  *   :py:class:`Connect.Client.exceptions.InternalServiceException`

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

  
  *   :py:class:`Connect.Client.exceptions.InvalidParameterException`

  
  *   :py:class:`Connect.Client.exceptions.InvalidRequestException`

  
  *   :py:class:`Connect.Client.exceptions.ThrottlingException`

  