Class: Aws::IoT::Types::StreamFile
- Inherits:
-
Struct
- Object
- Struct
- Aws::IoT::Types::StreamFile
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-iot/types.rb
Overview
Note:
When making an API call, you may pass StreamFile data as a hash:
{
file_id: 1,
s3_location: {
bucket: "S3Bucket",
key: "S3Key",
version: "S3Version",
},
}
Represents a file to stream.
Instance Attribute Summary collapse
-
#file_id ⇒ Integer
The file ID.
-
#s3_location ⇒ Types::S3Location
The location of the file in S3.
Instance Attribute Details
#file_id ⇒ Integer
The file ID.
9638 9639 9640 9641 9642 |
# File 'lib/aws-sdk-iot/types.rb', line 9638 class StreamFile < Struct.new( :file_id, :s3_location) include Aws::Structure end |
#s3_location ⇒ Types::S3Location
The location of the file in S3.
9638 9639 9640 9641 9642 |
# File 'lib/aws-sdk-iot/types.rb', line 9638 class StreamFile < Struct.new( :file_id, :s3_location) include Aws::Structure end |