Skip to main content

organization_service_access_status

Creates, updates, deletes, gets or lists an organization_service_access_status resource.

Overview

Nameorganization_service_access_status
TypeResource
Idaws.networkmanager.organization_service_access_status

Fields

The following fields are returned by SELECT queries:

NameDatatypeDescription
account_status_listarrayThe current service-linked role (SLR) deployment status for an Amazon Web Services Organization's accounts. This will be either SUCCEEDED or IN_PROGRESS.
organization_aws_service_access_statusstringThe status of the organization's AWS service access. This will be ENABLED or DISABLED.
organization_idstringThe ID of an Amazon Web Services Organization. (pattern: <code>^o-([0-9a-f]{8,17})$</code>)
slr_deployment_statusstringThe status of the SLR deployment for the account. This will be either SUCCEEDED or IN_PROGRESS.

Methods

The following methods are available for this resource:

NameAccessible byRequired ParamsOptional ParamsDescription
list_organization_service_access_statusselectregionmaxResults, nextTokenGets the status of the Service Linked Role (SLR) deployment for the accounts in a given Amazon Web Services Organization.

Parameters

Parameters can be passed in the WHERE clause of a query. Check the Methods section to see which parameters are required or optional for each operation.

NameDatatypeDescription
regionstringAWS region (default: us-east-1)
maxResultsintegerThe maximum number of results to return.
nextTokenstringThe token for the next page of results.

SELECT examples

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

SELECT
account_status_list,
organization_aws_service_access_status,
organization_id,
slr_deployment_status
FROM aws.networkmanager.organization_service_access_status
WHERE region = '{{ region }}' -- required
AND maxResults = '{{ maxResults }}'
AND nextToken = '{{ nextToken }}'
;