Class: Aws::CleanRooms::Types::AnalysisSource
- Inherits:
-
Struct
- Object
- Struct
- Aws::CleanRooms::Types::AnalysisSource
- Includes:
- Structure, Structure::Union
- Defined in:
- lib/aws-sdk-cleanrooms/types.rb
Overview
Note:
AnalysisSource is a union - when making an API calls you must set exactly one of the members.
Note:
AnalysisSource is a union - when returned from an API call exactly one value will be set and the returned type will be a subclass of AnalysisSource corresponding to the set member.
The structure that defines the body of the analysis template.
Defined Under Namespace
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#text ⇒ String
The query text.
-
#unknown ⇒ Object
Returns the value of attribute unknown.
Instance Attribute Details
#text ⇒ String
The query text.
406 407 408 409 410 411 412 413 414 415 |
# File 'lib/aws-sdk-cleanrooms/types.rb', line 406 class AnalysisSource < Struct.new( :text, :unknown) SENSITIVE = [] include Aws::Structure include Aws::Structure::Union class Text < AnalysisSource; end class Unknown < AnalysisSource; end end |
#unknown ⇒ Object
Returns the value of attribute unknown
406 407 408 |
# File 'lib/aws-sdk-cleanrooms/types.rb', line 406 def unknown @unknown end |