Class: Aws::IoTSiteWise::Types::Image
- Inherits:
-
Struct
- Object
- Struct
- Aws::IoTSiteWise::Types::Image
- Includes:
- Structure
- Defined in:
- 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.
6430 6431 6432 6433 6434 6435 |
# File 'lib/aws-sdk-iotsitewise/types.rb', line 6430 class Image < Struct.new( :id, :file) SENSITIVE = [] include Aws::Structure end |