organization_service_access_status
Creates, updates, deletes, gets or lists an organization_service_access_status resource.
Overview
| Name | organization_service_access_status |
| Type | Resource |
| Id | aws.networkmanager.organization_service_access_status |
Fields
The following fields are returned by SELECT queries:
- list_organization_service_access_status
| Name | Datatype | Description |
|---|---|---|
account_status_list | array | The 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_status | string | The status of the organization's AWS service access. This will be ENABLED or DISABLED. |
organization_id | string | The ID of an Amazon Web Services Organization. (pattern: <code>^o-([0-9a-f]{8,17})$</code>) |
slr_deployment_status | string | The 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:
| Name | Accessible by | Required Params | Optional Params | Description |
|---|---|---|---|---|
list_organization_service_access_status | select | region | maxResults, nextToken | Gets 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.
| Name | Datatype | Description |
|---|---|---|
region | string | AWS region (default: us-east-1) |
maxResults | integer | The maximum number of results to return. |
nextToken | string | The token for the next page of results. |
SELECT examples
- list_organization_service_access_status
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 }}'
;