Class: Aws::IoTSiteWise::Types::Image
- Inherits:
-
Struct
- Object
- Struct
- Aws::IoTSiteWise::Types::Image
- Defined in:
- gems/aws-sdk-iotsitewise/lib/aws-sdk-iotsitewise/types.rb
Overview
Contains an image that is one of the following:
An image file. Choose this option to upload a new image.
The ID of an existing image. Choose this option to keep an existing image.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#file ⇒ Types::ImageFile
Contains an image file.
-
#id ⇒ String
The ID of an existing image.
Instance Attribute Details
#file ⇒ Types::ImageFile
Contains an image file.
6481 6482 6483 6484 6485 6486 |
# File 'gems/aws-sdk-iotsitewise/lib/aws-sdk-iotsitewise/types.rb', line 6481 class Image < Struct.new( :id, :file) SENSITIVE = [] include Aws::Structure end |