network_insights_access_scope_contents
Creates, updates, deletes, gets or lists a network_insights_access_scope_contents resource.
Overview
| Name | network_insights_access_scope_contents |
| Type | Resource |
| Id | aws.ec2.network_insights_access_scope_contents |
Fields
The following fields are returned by SELECT queries:
- get_network_insights_access_scope_content
| Name | Datatype | Description |
|---|---|---|
exclude_paths | string | The paths to exclude. |
match_paths | string | The paths to match. |
network_insights_access_scope_id | string | The ID of the Network Access Scope. |
Methods
The following methods are available for this resource:
| Name | Accessible by | Required Params | Optional Params | Description |
|---|---|---|---|---|
get_network_insights_access_scope_content | select | NetworkInsightsAccessScopeId, region | DryRun | Gets the content for the specified Network Access Scope. |
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 |
|---|---|---|
NetworkInsightsAccessScopeId | string | The ID of the Network Access Scope. |
region | string | AWS region (default: us-east-1) |
DryRun | boolean | Checks whether you have the required permissions for the action, without actually making the request, and provides an error response. If you have the required permissions, the error response is DryRunOperation. Otherwise, it is UnauthorizedOperation. |
SELECT examples
- get_network_insights_access_scope_content
Gets the content for the specified Network Access Scope.
SELECT
exclude_paths,
match_paths,
network_insights_access_scope_id
FROM aws.ec2.network_insights_access_scope_contents
WHERE NetworkInsightsAccessScopeId = '{{ NetworkInsightsAccessScopeId }}' -- required
AND region = '{{ region }}' -- required
AND DryRun = '{{ DryRun }}'
;