Class: Aws::CleanRoomsML::Types::InputChannelDataSource
- Inherits:
-
Struct
- Object
- Struct
- Aws::CleanRoomsML::Types::InputChannelDataSource
- 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
Defined Under Namespace
Classes: ProtectedQueryInputParameters, Unknown
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#protected_query_input_parameters ⇒ Types::ProtectedQueryInputParameters
Provides information necessary to perform the protected query.
-
#unknown ⇒ Object
Returns the value of attribute unknown.
Instance Attribute Details
#protected_query_input_parameters ⇒ Types::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 |
#unknown ⇒ Object
Returns the value of attribute unknown
3440 3441 3442 |
# File 'gems/aws-sdk-cleanroomsml/lib/aws-sdk-cleanroomsml/types.rb', line 3440 def unknown @unknown end |