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.



3440
3441
3442
3443
3444
3445
3446
3447
3448
3449
# File 'gems/aws-sdk-cleanroomsml/lib/aws-sdk-cleanroomsml/types.rb', line 3440

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



3440
3441
3442
# File 'gems/aws-sdk-cleanroomsml/lib/aws-sdk-cleanroomsml/types.rb', line 3440

def unknown
  @unknown
end