Class: Aws::IoT::Types::StreamFile
- Inherits:
-
Struct
- Object
- Struct
- Aws::IoT::Types::StreamFile
- Defined in:
- gems/aws-sdk-iot/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.
Constant Summary collapse
- SENSITIVE =
[]
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.
16963 16964 16965 16966 16967 16968 |
# File 'gems/aws-sdk-iot/lib/aws-sdk-iot/types.rb', line 16963 class StreamFile < Struct.new( :file_id, :s3_location) SENSITIVE = [] include Aws::Structure end |
#s3_location ⇒ Types::S3Location
The location of the file in S3.
16963 16964 16965 16966 16967 16968 |
# File 'gems/aws-sdk-iot/lib/aws-sdk-iot/types.rb', line 16963 class StreamFile < Struct.new( :file_id, :s3_location) SENSITIVE = [] include Aws::Structure end |