Class: Aws::IoTSiteWise::Types::ImageLocation

Inherits:
Struct
  • Object
show all
Includes:
Structure
Defined in:
lib/aws-sdk-iotsitewise/types.rb

Overview

Contains an image that is uploaded to IoT SiteWise and available at a URL.

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#idString

The ID of the image.

Returns:

  • (String)


6086
6087
6088
6089
6090
6091
# File 'lib/aws-sdk-iotsitewise/types.rb', line 6086

class ImageLocation < Struct.new(
  :id,
  :url)
  SENSITIVE = []
  include Aws::Structure
end

#urlString

The URL where the image is available. The URL is valid for 15 minutes so that you can view and download the image

Returns:

  • (String)


6086
6087
6088
6089
6090
6091
# File 'lib/aws-sdk-iotsitewise/types.rb', line 6086

class ImageLocation < Struct.new(
  :id,
  :url)
  SENSITIVE = []
  include Aws::Structure
end