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

Inherits:
Struct
  • Object
show all
Includes:
Structure
Defined in:
lib/aws-sdk-kinesisvideo/types.rb

Overview

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.

Constant Summary collapse

SENSITIVE =
[]

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.

Returns:

  • (String)


1778
1779
1780
1781
1782
1783
# File 'lib/aws-sdk-kinesisvideo/types.rb', line 1778

class StreamNameCondition < Struct.new(
  :comparison_operator,
  :comparison_value)
  SENSITIVE = []
  include Aws::Structure
end

#comparison_valueString

A value to compare.

Returns:

  • (String)


1778
1779
1780
1781
1782
1783
# File 'lib/aws-sdk-kinesisvideo/types.rb', line 1778

class StreamNameCondition < Struct.new(
  :comparison_operator,
  :comparison_value)
  SENSITIVE = []
  include Aws::Structure
end