ListStreamsInput

public struct ListStreamsInput : AWSShape
extension KinesisVideo.ListStreamsInput: AWSPaginateStringToken

Undocumented

  • Declaration

    Swift

    public static var _members: [AWSShapeMember]
  • The maximum number of streams to return in the response. The default is 10,000.

    Declaration

    Swift

    public let maxResults: Int?
  • If you specify this parameter, when the result of a ListStreams operation is truncated, the call returns the NextToken in the response. To get another batch of streams, provide this token in your next request.

    Declaration

    Swift

    public let nextToken: String?
  • Optional: Returns only streams that satisfy a specific condition. Currently, you can specify only the prefix of a stream name as a condition.

    Declaration

    Swift

    public let streamNameCondition: StreamNameCondition?
  • Undocumented

    Declaration

    Swift

    public init(maxResults: Int? = nil, nextToken: String? = nil, streamNameCondition: StreamNameCondition? = nil)
  • Declaration

    Swift

    public func validate(name: String) throws