list_organization_service_access_status

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

Request Syntax

response = client.list_organization_service_access_status(
    MaxResults=123,
    NextToken='string'
)
Parameters
  • MaxResults (integer) -- The maximum number of results to return.
  • NextToken (string) -- The token for the next page of results.
Return type

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.