Skip to content

aws.chime.list_media_capture_pipelines

Example SQL Queries

SELECT * FROM
aws.chime.list_media_capture_pipelines;

Description

Returns a list of media capture pipelines.

This API is is no longer supported and will not be updated. We recommend using the latest version, ListMediaCapturePipelines, in the Amazon Chime SDK.

Using the latest version requires migrating to a dedicated namespace. For more information, refer to Migrating from the Amazon Chime namespace in the Amazon Chime SDK Developer Guide.

Table Definition

Column NameColumn Data Type
max_results Input Column

The maximum number of results to return in a single call. Valid Range: 1 - 99.

BIGINT
next_token Input Column

The token used to retrieve the next page of results.

VARCHAR
_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
)[]
)[]
)
)
Show child fields
_aws_profile.account_id

The AWS account id

_aws_profile.assumed_role_arn

The ARN of the assumed role

_aws_profile.name

The unique name of the profile.

_aws_profile.organization

Information about this profile's membership in the AWS organization.

Show child fields
_aws_profile.organization.account_name

The name of account speciifed by the organization

_aws_profile.organization.id

The organization id

_aws_profile.organization.master_account
Show child fields
_aws_profile.organization.master_account.email

The organization master account email address

_aws_profile.organization.master_account.id

The organization master account id

_aws_profile.organization.parents[]
Show child fields
_aws_profile.organization.parents[].id

The id of the parent

_aws_profile.organization.parents[].name

The name of the parent

_aws_profile.organization.parents[].tags[]
Show child fields
_aws_profile.organization.parents[].tags[].key
_aws_profile.organization.parents[].tags[].value
_aws_profile.organization.parents[].type

The type of parent can be an organization unit or a root

_aws_profile.organization.tags[]
Show child fields
_aws_profile.organization.tags[].key
_aws_profile.organization.tags[].value
_aws_profile.type

The type of profile, either 'credentials' or 'assumed_role'

_aws_profile.via_profile_name

This IAM role for this profile is assumed by first utilizing another profile with this name to obtain credentials.

media_capture_pipelines

The media capture pipeline objects in the list.

STRUCT(
"media_pipeline_id" VARCHAR,
"source_type" VARCHAR,
"source_arn" VARCHAR,
"status" VARCHAR,
"sink_type" VARCHAR,
"sink_arn" VARCHAR,
"created_timestamp" TIMESTAMP_S,
"updated_timestamp" TIMESTAMP_S,
"chime_sdk_meeting_configuration" STRUCT(
"source_configuration" STRUCT(
"selected_video_streams" STRUCT(
"attendee_ids" VARCHAR[],
"external_user_ids" VARCHAR[]
)
),
"artifacts_configuration" STRUCT(
"audio" STRUCT(
"mux_type" VARCHAR
),
"video" STRUCT(
"state" VARCHAR,
"mux_type" VARCHAR
),
"content" STRUCT(
"state" VARCHAR,
"mux_type" VARCHAR
)
)
)
)[]
Show child fields
media_capture_pipelines[]
Show child fields
media_capture_pipelines[].chime_sdk_meeting_configuration

The configuration for a specified media capture pipeline. SourceType must be ChimeSdkMeeting.

Show child fields
media_capture_pipelines[].chime_sdk_meeting_configuration.artifacts_configuration

The configuration for the artifacts in an Amazon Chime SDK meeting.

Show child fields
media_capture_pipelines[].chime_sdk_meeting_configuration.artifacts_configuration.audio

The configuration for the audio artifacts.

Show child fields
media_capture_pipelines[].chime_sdk_meeting_configuration.artifacts_configuration.audio.mux_type

The MUX type of the audio artifact configuration object.

media_capture_pipelines[].chime_sdk_meeting_configuration.artifacts_configuration.content

The configuration for the content artifacts.

Show child fields
media_capture_pipelines[].chime_sdk_meeting_configuration.artifacts_configuration.content.mux_type

The MUX type of the artifact configuration.

media_capture_pipelines[].chime_sdk_meeting_configuration.artifacts_configuration.content.state

Indicates whether the content artifact is enabled or disabled.

media_capture_pipelines[].chime_sdk_meeting_configuration.artifacts_configuration.video

The configuration for the video artifacts.

Show child fields
media_capture_pipelines[].chime_sdk_meeting_configuration.artifacts_configuration.video.mux_type

The MUX type of the video artifact configuration object.

media_capture_pipelines[].chime_sdk_meeting_configuration.artifacts_configuration.video.state

Indicates whether the video artifact is enabled or disabled.

media_capture_pipelines[].chime_sdk_meeting_configuration.source_configuration

The source configuration for a specified media capture pipeline.

Show child fields
media_capture_pipelines[].chime_sdk_meeting_configuration.source_configuration.selected_video_streams

The selected video streams to capture for a specified media capture pipeline. The number of video streams can't exceed 25.

Show child fields
media_capture_pipelines[].chime_sdk_meeting_configuration.source_configuration.selected_video_streams.attendee_ids[]
media_capture_pipelines[].chime_sdk_meeting_configuration.source_configuration.selected_video_streams.external_user_ids[]
media_capture_pipelines[].created_timestamp

The time at which the capture pipeline was created, in ISO 8601 format.

media_capture_pipelines[].media_pipeline_id

The ID of a media capture pipeline.

media_capture_pipelines[].sink_arn

ARN of the destination to which the media artifacts are saved.

media_capture_pipelines[].sink_type

Destination type to which the media artifacts are saved. You must use an S3 Bucket.

media_capture_pipelines[].source_arn

ARN of the source from which the media artifacts will be saved.

media_capture_pipelines[].source_type

Source type from which media artifacts are saved. You must use ChimeMeeting.

media_capture_pipelines[].status

The status of the media capture pipeline.

media_capture_pipelines[].updated_timestamp

The time at which the capture pipeline was updated, in ISO 8601 format.