Skip to main content

mapped_resource_configurations

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

Overview

Namemapped_resource_configurations
TypeResource
Idaws.kinesisvideo.mapped_resource_configurations

Fields

The following fields are returned by SELECT queries:

NameDatatypeDescription
arnstringThe Amazon Resource Name (ARN) of the Kinesis Video Stream resource, associated with the stream. (pattern: <code>arn:[a-z\d-]+:kinesisvideo:[a-z0-9-]+:[0-9]+:[a-z]+/[a-zA-Z0-9_.-]+/[0-9]+</code>)
typestringThe type of the associated resource for the kinesis video stream.

Methods

The following methods are available for this resource:

NameAccessible byRequired ParamsOptional ParamsDescription
describe_mapped_resource_configurationselectregionReturns the most current information about the stream. The streamName or streamARN should be provided in the input.

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 the most current information about the stream. The streamName or streamARN should be provided in the input.

SELECT
arn,
type
FROM aws.kinesisvideo.mapped_resource_configurations
WHERE region = '{{ region }}' -- required
;