Class: Aws::IoTSiteWise::Types::File
- Inherits:
-
Struct
- Object
- Struct
- Aws::IoTSiteWise::Types::File
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-iotsitewise/types.rb
Overview
The file in Amazon S3 where your data is saved.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#bucket ⇒ String
The name of the Amazon S3 bucket from which data is imported.
-
#key ⇒ String
The key of the Amazon S3 object that contains your data.
-
#version_id ⇒ String
The version ID to identify a specific version of the Amazon S3 object that contains your data.
Instance Attribute Details
#bucket ⇒ String
The name of the Amazon S3 bucket from which data is imported.
5757 5758 5759 5760 5761 5762 5763 |
# File 'lib/aws-sdk-iotsitewise/types.rb', line 5757 class File < Struct.new( :bucket, :key, :version_id) SENSITIVE = [] include Aws::Structure end |
#key ⇒ String
The key of the Amazon S3 object that contains your data. Each object has a key that is a unique identifier. Each object has exactly one key.
5757 5758 5759 5760 5761 5762 5763 |
# File 'lib/aws-sdk-iotsitewise/types.rb', line 5757 class File < Struct.new( :bucket, :key, :version_id) SENSITIVE = [] include Aws::Structure end |