Class: Aws::IoT::Types::FileLocation
- Inherits:
-
Struct
- Object
- Struct
- Aws::IoT::Types::FileLocation
- 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
-
#s3_location ⇒ Types::S3Location
The location of the updated firmware in S3.
-
#stream ⇒ Types::Stream
The stream that contains the OTA update.
Instance Attribute Details
#s3_location ⇒ Types::S3Location
The location of the updated firmware in S3.
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 |
#stream ⇒ Types::Stream
The stream that contains the OTA update.
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 |