Class: Aws::IVS::Types::StreamFilters
- Inherits:
-
Struct
- Object
- Struct
- Aws::IVS::Types::StreamFilters
- Defined in:
- gems/aws-sdk-ivs/lib/aws-sdk-ivs/types.rb
Overview
Note:
When making an API call, you may pass StreamFilters data as a hash:
{
health: "HEALTHY", # accepts HEALTHY, STARVING, UNKNOWN
}
Object specifying the stream attribute on which to filter.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#health ⇒ String
The stream’s health.
Instance Attribute Details
#health ⇒ String
The stream’s health.
1522 1523 1524 1525 1526 |
# File 'gems/aws-sdk-ivs/lib/aws-sdk-ivs/types.rb', line 1522 class StreamFilters < Struct.new( :health) SENSITIVE = [] include Aws::Structure end |