mapped_resource_configurations
Creates, updates, deletes, gets or lists a mapped_resource_configurations resource.
Overview
| Name | mapped_resource_configurations |
| Type | Resource |
| Id | aws.kinesisvideo.mapped_resource_configurations |
Fields
The following fields are returned by SELECT queries:
- describe_mapped_resource_configuration
| Name | Datatype | Description |
|---|---|---|
arn | string | The 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>) |
type | string | The type of the associated resource for the kinesis video stream. |
Methods
The following methods are available for this resource:
| Name | Accessible by | Required Params | Optional Params | Description |
|---|---|---|---|---|
describe_mapped_resource_configuration | select | region | Returns 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.
| Name | Datatype | Description |
|---|---|---|
region | string | AWS region (default: us-east-1) |
SELECT examples
- describe_mapped_resource_configuration
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
;