Skip to main content

streaming_access_for_services

Creates, updates, deletes, gets or lists a streaming_access_for_services resource.

Overview

Namestreaming_access_for_services
TypeResource
Idaws.resource_explorer_2.streaming_access_for_services

Fields

The following fields are returned by SELECT queries:

NameDatatypeDescription
created_atstring (date-time)The date and time when streaming access was granted to the Amazon Web Services service, in ISO 8601 format.
service_principalstringThe 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:

NameAccessible byRequired ParamsOptional ParamsDescription
list_streaming_access_for_servicesselectregionReturns 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.

NameDatatypeDescription
regionstringAWS region (default: us-east-1)

SELECT examples

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
;