Class: Aws::IoT::Types::Stream
- Inherits:
-
Struct
- Object
- Struct
- Aws::IoT::Types::Stream
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-iot/types.rb
Overview
Note:
When making an API call, you may pass Stream data as a hash:
{
stream_id: "StreamId",
file_id: 1,
}
Describes a group of files that can be streamed.
Instance Attribute Summary collapse
-
#file_id ⇒ Integer
The ID of a file associated with a stream.
-
#stream_id ⇒ String
The stream ID.
Instance Attribute Details
#file_id ⇒ Integer
The ID of a file associated with a stream.
9610 9611 9612 9613 9614 |
# File 'lib/aws-sdk-iot/types.rb', line 9610 class Stream < Struct.new( :stream_id, :file_id) include Aws::Structure end |
#stream_id ⇒ String
The stream ID.
9610 9611 9612 9613 9614 |
# File 'lib/aws-sdk-iot/types.rb', line 9610 class Stream < Struct.new( :stream_id, :file_id) include Aws::Structure end |