Class: Aws::IoT::Types::S3Destination
- Inherits:
-
Struct
- Object
- Struct
- Aws::IoT::Types::S3Destination
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-iot/types.rb
Overview
Note:
When making an API call, you may pass S3Destination data as a hash:
{
bucket: "S3Bucket",
prefix: "Prefix",
}
Describes the location of updated firmware in S3.
Instance Attribute Summary collapse
-
#bucket ⇒ String
The S3 bucket that contains the updated firmware.
-
#prefix ⇒ String
The S3 prefix.
Instance Attribute Details
#bucket ⇒ String
The S3 bucket that contains the updated firmware.
8990 8991 8992 8993 8994 |
# File 'lib/aws-sdk-iot/types.rb', line 8990 class S3Destination < Struct.new( :bucket, :prefix) include Aws::Structure end |
#prefix ⇒ String
The S3 prefix.
8990 8991 8992 8993 8994 |
# File 'lib/aws-sdk-iot/types.rb', line 8990 class S3Destination < Struct.new( :bucket, :prefix) include Aws::Structure end |