Class: Aws::KinesisVideo::Types::MediaSourceConfig

Inherits:
Struct
  • Object
show all
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

Instance Attribute Details

#media_uri_secret_arnString

The Amazon Web Services Secrets Manager ARN for the username and password of the camera, or a local media file location.

Returns:

  • (String)


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_typeString

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>

Returns:

  • (String)


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