Class: Aws::IoT::Types::StreamFile

Inherits:
Struct
  • Object
show all
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

Instance Attribute Details

#file_idInteger

The file ID.

Returns:

  • (Integer)


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_locationTypes::S3Location

The location of the file in S3.

Returns:



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