Class: Aws::CleanRooms::Types::PopulationAnalysisConfiguration
- Inherits:
-
Struct
- Object
- Struct
- Aws::CleanRooms::Types::PopulationAnalysisConfiguration
- Defined in:
- gems/aws-sdk-cleanrooms/lib/aws-sdk-cleanrooms/types.rb
Overview
PopulationAnalysisConfiguration is a union - when making an API calls you must set exactly one of the members.
PopulationAnalysisConfiguration is a union - when returned from an API call exactly one value will be set and the returned type will be a subclass of PopulationAnalysisConfiguration corresponding to the set member.
Contains the configuration that defines the analysis used to populate an intermediate table.
Defined Under Namespace
Classes: SqlParameters, Unknown
Constant Summary collapse
- SENSITIVE =
[:sql_parameters]
Instance Attribute Summary collapse
-
#sql_parameters ⇒ Types::PopulationAnalysisSqlParameters
The SQL parameters for the population analysis, including the query string or analysis template ARN.
-
#unknown ⇒ Object
Returns the value of attribute unknown.
Instance Attribute Details
#sql_parameters ⇒ Types::PopulationAnalysisSqlParameters
The SQL parameters for the population analysis, including the query string or analysis template ARN.
8818 8819 8820 8821 8822 8823 8824 8825 8826 8827 |
# File 'gems/aws-sdk-cleanrooms/lib/aws-sdk-cleanrooms/types.rb', line 8818 class PopulationAnalysisConfiguration < Struct.new( :sql_parameters, :unknown) SENSITIVE = [:sql_parameters] include Aws::Structure include Aws::Structure::Union class SqlParameters < PopulationAnalysisConfiguration; end class Unknown < PopulationAnalysisConfiguration; end end |
#unknown ⇒ Object
Returns the value of attribute unknown
8818 8819 8820 |
# File 'gems/aws-sdk-cleanrooms/lib/aws-sdk-cleanrooms/types.rb', line 8818 def unknown @unknown end |