Class: Aws::IVS::Types::ListStreamKeysRequest
- Inherits:
-
Struct
- Object
- Struct
- Aws::IVS::Types::ListStreamKeysRequest
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-ivs/types.rb
Overview
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#channel_arn ⇒ String
Channel ARN used to filter the list.
-
#max_results ⇒ Integer
Maximum number of streamKeys to return.
-
#next_token ⇒ String
The first stream key to retrieve.
Instance Attribute Details
#channel_arn ⇒ String
Channel ARN used to filter the list.
1890 1891 1892 1893 1894 1895 1896 |
# File 'lib/aws-sdk-ivs/types.rb', line 1890 class ListStreamKeysRequest < Struct.new( :channel_arn, :next_token, :max_results) SENSITIVE = [] include Aws::Structure end |
#max_results ⇒ Integer
Maximum number of streamKeys to return. Default: 1.
1890 1891 1892 1893 1894 1895 1896 |
# File 'lib/aws-sdk-ivs/types.rb', line 1890 class ListStreamKeysRequest < Struct.new( :channel_arn, :next_token, :max_results) SENSITIVE = [] include Aws::Structure end |
#next_token ⇒ String
The first stream key to retrieve. This is used for pagination; see
the nextToken response field.
1890 1891 1892 1893 1894 1895 1896 |
# File 'lib/aws-sdk-ivs/types.rb', line 1890 class ListStreamKeysRequest < Struct.new( :channel_arn, :next_token, :max_results) SENSITIVE = [] include Aws::Structure end |