UpdateStreamInput

public struct UpdateStreamInput : AWSShape

Undocumented

  • Declaration

    Swift

    public static var _members: [AWSShapeMember]
  • The version of the stream whose metadata you want to update.

    Declaration

    Swift

    public let currentVersion: String
  • The name of the device that is writing to the stream. In the current implementation, Kinesis Video Streams does not use this name.

    Declaration

    Swift

    public let deviceName: String?
  • The stream’s media type. Use MediaType to specify the type of content that the stream contains to the consumers of the stream. For more information about media types, see Media Types. If you choose to specify the MediaType, see Naming Requirements. To play video on the console, you must specify the correct video type. For example, if the video in the stream is H.264, specify video/h264 as the MediaType.

    Declaration

    Swift

    public let mediaType: String?
  • The ARN of the stream whose metadata you want to update.

    Declaration

    Swift

    public let streamARN: String?
  • The name of the stream whose metadata you want to update. The stream name is an identifier for the stream, and must be unique for each account and region.

    Declaration

    Swift

    public let streamName: String?
  • Undocumented

    Declaration

    Swift

    public init(currentVersion: String, deviceName: String? = nil, mediaType: String? = nil, streamARN: String? = nil, streamName: String? = nil)
  • Declaration

    Swift

    public func validate(name: String) throws