AWSKinesisVideoMediaSourceConfig

Objective-C

@interface AWSKinesisVideoMediaSourceConfig

Swift

class AWSKinesisVideoMediaSourceConfig

The configuration details that consist of the credentials required (MediaUriSecretArn and MediaUriType) to access the media files that are streamed to the camera.

Required parameters: [MediaUriSecretArn, MediaUriType]

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

    Declaration

    Objective-C

    @property (nonatomic, strong) NSString *_Nullable mediaUriSecretArn;

    Swift

    var mediaUriSecretArn: String? { get set }
  • The Uniform Resource Identifier (URI) type. The FILE_URI value can be used to stream local media files.

    Preview only supports the RTSP_URI media source URI format .

    Declaration

    Objective-C

    @property (nonatomic) AWSKinesisVideoMediaUriType mediaUriType;

    Swift

    var mediaUriType: AWSKinesisVideoMediaUriType { get set }