Class: Aws::CleanRooms::Types::ConfiguredTableAnalysisRulePolicy

Inherits:
Struct
  • Object
show all
Defined in:
gems/aws-sdk-cleanrooms/lib/aws-sdk-cleanrooms/types.rb

Overview

Note:

ConfiguredTableAnalysisRulePolicy is a union - when making an API calls you must set exactly one of the members.

Note:

ConfiguredTableAnalysisRulePolicy is a union - when returned from an API call exactly one value will be set and the returned type will be a subclass of ConfiguredTableAnalysisRulePolicy corresponding to the set member.

Controls on the query specifications that can be run on a configured table.

Direct Known Subclasses

Unknown, V1

Defined Under Namespace

Classes: Unknown, V1

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#unknownObject

Returns the value of attribute unknown

Returns:

  • (Object)

    the current value of unknown



1638
1639
1640
# File 'gems/aws-sdk-cleanrooms/lib/aws-sdk-cleanrooms/types.rb', line 1638

def unknown
  @unknown
end

#v1Types::ConfiguredTableAnalysisRulePolicyV1

Controls on the query specifications that can be run on a configured table.



1638
1639
1640
1641
1642
1643
1644
1645
1646
1647
# File 'gems/aws-sdk-cleanrooms/lib/aws-sdk-cleanrooms/types.rb', line 1638

class ConfiguredTableAnalysisRulePolicy < Struct.new(
  :v1,
  :unknown)
  SENSITIVE = []
  include Aws::Structure
  include Aws::Structure::Union

  class V1 < ConfiguredTableAnalysisRulePolicy; end
  class Unknown < ConfiguredTableAnalysisRulePolicy; end
end