Class: Aws::KinesisVideo::Types::MediaSourceConfig
- Inherits:
-
Struct
- Object
- Struct
- Aws::KinesisVideo::Types::MediaSourceConfig
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-kinesisvideo/types.rb
Overview
The configuration details that consist of the credentials required (‘MediaUriSecretArn` and `MediaUriType`) to access the media files that are streamed to the camera.
Constant Summary collapse
- SENSITIVE =
[:media_uri_secret_arn]
Instance Attribute Summary collapse
-
#media_uri_secret_arn ⇒ String
The Amazon Web Services Secrets Manager ARN for the username and password of the camera, or a local media file location.
-
#media_uri_type ⇒ String
The Uniform Resource Identifier (URI) type.
Instance Attribute Details
#media_uri_secret_arn ⇒ String
The Amazon Web Services Secrets Manager ARN for the username and password of the camera, or a local media file location.
1343 1344 1345 1346 1347 1348 |
# File 'lib/aws-sdk-kinesisvideo/types.rb', line 1343 class MediaSourceConfig < Struct.new( :media_uri_secret_arn, :media_uri_type) SENSITIVE = [:media_uri_secret_arn] include Aws::Structure end |
#media_uri_type ⇒ String
The Uniform Resource Identifier (URI) type. The ‘FILE_URI` value can be used to stream local media files.
<note markdown=“1”> Preview only supports the ‘RTSP_URI` media source URI format .
</note>
1343 1344 1345 1346 1347 1348 |
# File 'lib/aws-sdk-kinesisvideo/types.rb', line 1343 class MediaSourceConfig < Struct.new( :media_uri_secret_arn, :media_uri_type) SENSITIVE = [:media_uri_secret_arn] include Aws::Structure end |