Class: Aws::CleanRoomsML::Types::InputChannelDataSource

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

Overview

Note:

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

Note:

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

Provides the data source that is used to define an input channel.

Direct Known Subclasses

ProtectedQueryInputParameters, Unknown

Defined Under Namespace

Classes: ProtectedQueryInputParameters, Unknown

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#protected_query_input_parametersTypes::ProtectedQueryInputParameters

Provides information necessary to perform the protected query.



3673
3674
3675
3676
3677
3678
3679
3680
3681
3682
# File 'lib/aws-sdk-cleanroomsml/types.rb', line 3673

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

  class ProtectedQueryInputParameters < InputChannelDataSource; end
  class Unknown < InputChannelDataSource; end
end

#unknownObject

Returns the value of attribute unknown

Returns:

  • (Object)

    the current value of unknown



3673
3674
3675
# File 'lib/aws-sdk-cleanroomsml/types.rb', line 3673

def unknown
  @unknown
end