_aws_profile Input Column
The AWS profile defines the AWS identity used. It can be defined via credentials or by assuming a IAM role. | STRUCT( "type" VARCHAR, "name" VARCHAR, "account_id" VARCHAR, "via_profile_name" VARCHAR, "assumed_role_arn" VARCHAR, "organization" STRUCT( "account_name" VARCHAR, "id" VARCHAR, "tags" STRUCT( "key" VARCHAR, "value" VARCHAR )[], "master_account" STRUCT( "id" VARCHAR, "email" VARCHAR ), "parents" STRUCT( "type" VARCHAR, "id" VARCHAR, "name" VARCHAR, "tags" STRUCT( "key" VARCHAR, "value" VARCHAR )[] )[] ) ) |
stream
| STRUCT( "channel_arn" VARCHAR, "stream_id" VARCHAR, "playback_url" VARCHAR, "start_time" TIMESTAMP_S, "state" VARCHAR, "health" VARCHAR, "viewer_count" BIGINT ) |
Show child fields- stream.channel_arn
Channel ARN for the stream.
- stream.health
The stream’s health.
- stream.playback_url
URL of the master playlist, required by the video player to play the HLS stream.
- stream.start_time
Time of the stream’s start. This is an ISO 8601 timestamp; note that this is returned as a string.
- stream.state
The stream’s state. Do not rely on the OFFLINE state, as the API may not return it; instead, a "NotBroadcasting" error will indicate that the stream is not live.
- stream.stream_id
Unique identifier for a live or previously live stream in the specified channel.
- stream.viewer_count
A count of concurrent views of the stream. Typically, a new view appears in viewerCount within 15 seconds of when video playback starts and a view is removed from viewerCount within 1 minute of when video playback ends. A value of -1 indicates that the request timed out; in this case, retry.
|