Class: Aws::KinesisVideo::Types::MediaSourceConfig
- Inherits:
-
Struct
- Object
- Struct
- Aws::KinesisVideo::Types::MediaSourceConfig
- Defined in:
- gems/aws-sdk-kinesisvideo/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 'gems/aws-sdk-kinesisvideo/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.
RTSP_URI
media source URI format .
1343 1344 1345 1346 1347 1348 |
# File 'gems/aws-sdk-kinesisvideo/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 |