Class: Aws::IoTSiteWise::Types::ImageFile
- Inherits:
-
Struct
- Object
- Struct
- Aws::IoTSiteWise::Types::ImageFile
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-iotsitewise/types.rb
Overview
Contains an image file.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#data ⇒ String
The image file contents, represented as a base64-encoded string.
-
#type ⇒ String
The file type of the image.
Instance Attribute Details
#data ⇒ String
The image file contents, represented as a base64-encoded string. The file size must be less than 1 MB.
6463 6464 6465 6466 6467 6468 |
# File 'lib/aws-sdk-iotsitewise/types.rb', line 6463 class ImageFile < Struct.new( :data, :type) SENSITIVE = [] include Aws::Structure end |
#type ⇒ String
The file type of the image.
6463 6464 6465 6466 6467 6468 |
# File 'lib/aws-sdk-iotsitewise/types.rb', line 6463 class ImageFile < Struct.new( :data, :type) SENSITIVE = [] include Aws::Structure end |