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
Note:
When making an API call, you may pass Image data as a hash:
{
id: "ID",
file: {
data: "data", # required
type: "PNG", # required, accepts PNG
},
}
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.
3650 3651 3652 3653 3654 3655 |
# File 'gems/aws-sdk-iotsitewise/lib/aws-sdk-iotsitewise/types.rb', line 3650 class Image < Struct.new( :id, :file) SENSITIVE = [] include Aws::Structure end |