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
Note:
When making an API call, you may pass ImageFile data as a hash:
{
data: "data", # required
type: "PNG", # required, accepts PNG
}
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.
3676 3677 3678 3679 3680 3681 |
# File 'gems/aws-sdk-iotsitewise/lib/aws-sdk-iotsitewise/types.rb', line 3676 class ImageFile < Struct.new( :data, :type) SENSITIVE = [] include Aws::Structure end |