Class: Aws::IoTSiteWise::Types::ImageFile

Inherits:
Struct
  • Object
show all
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

Instance Attribute Details

#dataString

The image file contents, represented as a base64-encoded string. The file size must be less than 1 MB.

Returns:

  • (String)


5929
5930
5931
5932
5933
5934
# File 'gems/aws-sdk-iotsitewise/lib/aws-sdk-iotsitewise/types.rb', line 5929

class ImageFile < Struct.new(
  :data,
  :type)
  SENSITIVE = []
  include Aws::Structure
end

#typeString

The file type of the image.

Returns:

  • (String)


5929
5930
5931
5932
5933
5934
# File 'gems/aws-sdk-iotsitewise/lib/aws-sdk-iotsitewise/types.rb', line 5929

class ImageFile < Struct.new(
  :data,
  :type)
  SENSITIVE = []
  include Aws::Structure
end