streaming_access_for_services
Creates, updates, deletes, gets or lists a streaming_access_for_services resource.
Overview
| Name | streaming_access_for_services |
| Type | Resource |
| Id | aws.resource_explorer_2.streaming_access_for_services |
Fields
The following fields are returned by SELECT queries:
- list_streaming_access_for_services
| Name | Datatype | Description |
|---|---|---|
created_at | string (date-time) | The date and time when streaming access was granted to the Amazon Web Services service, in ISO 8601 format. |
service_principal | string | The service principal of the Amazon Web Services service that has streaming access to your Resource Explorer data. A service principal is a unique identifier for an Amazon Web Services service. |
Methods
The following methods are available for this resource:
| Name | Accessible by | Required Params | Optional Params | Description |
|---|---|---|---|---|
list_streaming_access_for_services | select | region | Returns a list of Amazon Web Services services that have been granted streaming access to your Resource Explorer data. Streaming access allows Amazon Web Services services to receive real-time updates about your resources as they are indexed by Resource Explorer. |
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) |
SELECT examples
- list_streaming_access_for_services
Returns a list of Amazon Web Services services that have been granted streaming access to your Resource Explorer data. Streaming access allows Amazon Web Services services to receive real-time updates about your resources as they are indexed by Resource Explorer.
SELECT
created_at,
service_principal
FROM aws.resource_explorer_2.streaming_access_for_services
WHERE region = '{{ region }}' -- required
;