Class: Aws::IoTSiteWise::Types::ImageFile
- Inherits:
-
Struct
- Object
- Struct
- Aws::IoTSiteWise::Types::ImageFile
- Defined in:
- gems/aws-sdk-iotsitewise/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.
6448 6449 6450 6451 6452 6453 |
# File 'gems/aws-sdk-iotsitewise/lib/aws-sdk-iotsitewise/types.rb', line 6448 class ImageFile < Struct.new( :data, :type) SENSITIVE = [] include Aws::Structure end |