:doc:`NetworkManager <../../networkmanager>` / Client / list_organization_service_access_status

***************************************
list_organization_service_access_status
***************************************



.. py:method:: NetworkManager.Client.list_organization_service_access_status(**kwargs)

  

  Gets the status of the Service Linked Role (SLR) deployment for the accounts in a given Amazon Web Services Organization.

  

  See also: `AWS API Documentation <https://docs.aws.amazon.com/goto/WebAPI/networkmanager-2019-07-05/ListOrganizationServiceAccessStatus>`_  


  **Request Syntax**
  ::

    response = client.list_organization_service_access_status(
        MaxResults=123,
        NextToken='string'
    )
    
  :type MaxResults: integer
  :param MaxResults: 

    The maximum number of results to return.

    

  
  :type NextToken: string
  :param NextToken: 

    The token for the next page of results.

    

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

    
    ::

      {
          'OrganizationStatus': {
              'OrganizationId': 'string',
              'OrganizationAwsServiceAccessStatus': 'string',
              'SLRDeploymentStatus': 'string',
              'AccountStatusList': [
                  {
                      'AccountId': 'string',
                      'SLRDeploymentStatus': 'string'
                  },
              ]
          },
          'NextToken': 'string'
      }
      
    **Response Structure**

    

    - *(dict) --* 
      

      - **OrganizationStatus** *(dict) --* 

        Displays the status of an Amazon Web Services Organization.

        
        

        - **OrganizationId** *(string) --* 

          The ID of an Amazon Web Services Organization.

          
        

        - **OrganizationAwsServiceAccessStatus** *(string) --* 

          The status of the organization's AWS service access. This will be ``ENABLED`` or ``DISABLED``.

          
        

        - **SLRDeploymentStatus** *(string) --* 

          The status of the SLR deployment for the account. This will be either ``SUCCEEDED`` or ``IN_PROGRESS``.

          
        

        - **AccountStatusList** *(list) --* 

          The current service-linked role (SLR) deployment status for an Amazon Web Services Organization's accounts. This will be either ``SUCCEEDED`` or ``IN_PROGRESS``.

          
          

          - *(dict) --* 

            Describes the current status of an account within an Amazon Web Services Organization, including service-linked roles (SLRs).

            
            

            - **AccountId** *(string) --* 

              The ID of an account within the Amazon Web Services Organization.

              
            

            - **SLRDeploymentStatus** *(string) --* 

              The status of SLR deployment for the account.

              
        
      
    
      

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

        The token for the next page of results.

        
  