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.
Constant Summary collapse
- SENSITIVE =
[]
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.
15912 15913 15914 15915 15916 15917 |
# File 'lib/aws-sdk-iot/types.rb', line 15912 class S3Destination < Struct.new( :bucket, :prefix) SENSITIVE = [] include Aws::Structure end |
#prefix ⇒ String
The S3 prefix.
15912 15913 15914 15915 15916 15917 |
# File 'lib/aws-sdk-iot/types.rb', line 15912 class S3Destination < Struct.new( :bucket, :prefix) SENSITIVE = [] include Aws::Structure end |