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

Inherits:
Struct
  • Object
show all
Defined in:
gems/aws-sdk-cleanroomsml/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.



3655
3656
3657
3658
3659
3660
3661
3662
3663
3664
# File 'gems/aws-sdk-cleanroomsml/lib/aws-sdk-cleanroomsml/types.rb', line 3655

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



3655
3656
3657
# File 'gems/aws-sdk-cleanroomsml/lib/aws-sdk-cleanroomsml/types.rb', line 3655

def unknown
  @unknown
end