You are viewing documentation for version 2 of the AWS SDK for Ruby. Version 3 documentation can be found here.

Class: Aws::KinesisVideo::Types::StreamNameCondition

Inherits:
Struct
  • Object
show all
Defined in:
(unknown)

Overview

Note:

When passing StreamNameCondition as input to an Aws::Client method, you can use a vanilla Hash:

{
  comparison_operator: "BEGINS_WITH", # accepts BEGINS_WITH
  comparison_value: "StreamName",
}

Specifies the condition that streams must satisfy to be returned when you list streams (see the ListStreams API). A condition has a comparison operation and a value. Currently, you can specify only the BEGINS_WITH operator, which finds streams whose names start with a given prefix.

Returned by:

Instance Attribute Summary collapse

Instance Attribute Details

#comparison_operatorString

A comparison operator. Currently, you can specify only the BEGINS_WITH operator, which finds streams whose names start with a given prefix.

Possible values:

  • BEGINS_WITH

Returns:

  • (String)

    A comparison operator.

#comparison_valueString

A value to compare.

Returns:

  • (String)

    A value to compare.