Class: Aws::IoTSiteWise::Types::MountSource

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

Overview

Note:

MountSource is a union - when making an API calls you must set exactly one of the members.

Note:

MountSource is a union - when returned from an API call exactly one value will be set and the returned type will be a subclass of MountSource corresponding to the set member.

The data source configuration for a mount. Specify exactly one of the following.

Defined Under Namespace

Classes: S3AccessPoint, Unknown

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#s3_access_pointTypes::S3AccessPointSource

Configuration for a mount that reads from an Amazon S3 access point.



12407
12408
12409
12410
12411
12412
12413
12414
12415
12416
# File 'gems/aws-sdk-iotsitewise/lib/aws-sdk-iotsitewise/types.rb', line 12407

class MountSource < Struct.new(
  :s3_access_point,
  :unknown)
  SENSITIVE = []
  include Aws::Structure
  include Aws::Structure::Union

  class S3AccessPoint < MountSource; end
  class Unknown < MountSource; end
end

#unknownObject

Returns the value of attribute unknown

Returns:

  • (Object)

    the current value of unknown



12407
12408
12409
# File 'gems/aws-sdk-iotsitewise/lib/aws-sdk-iotsitewise/types.rb', line 12407

def unknown
  @unknown
end