Class: Aws::IoT::Types::FileLocation

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 FileLocation data as a hash:

{
  stream: {
    stream_id: "StreamId",
    file_id: 1,
  },
  s3_location: {
    bucket: "S3Bucket",
    key: "S3Key",
    version: "S3Version",
  },
}

The location of the OTA update.

Instance Attribute Summary collapse

Instance Attribute Details

#s3_locationTypes::S3Location

The location of the updated firmware in S3.

Returns:



4940
4941
4942
4943
4944
# File 'lib/aws-sdk-iot/types.rb', line 4940

class FileLocation < Struct.new(
  :stream,
  :s3_location)
  include Aws::Structure
end

#streamTypes::Stream

The stream that contains the OTA update.

Returns:



4940
4941
4942
4943
4944
# File 'lib/aws-sdk-iot/types.rb', line 4940

class FileLocation < Struct.new(
  :stream,
  :s3_location)
  include Aws::Structure
end