Class: AWSCDK::CleanRooms::CfnConfiguredTableAssociation::ConfiguredTableAssociationAnalysisRulePolicyProperty
- Inherits:
-
Jsii::Struct
- Object
- Jsii::Struct
- AWSCDK::CleanRooms::CfnConfiguredTableAssociation::ConfiguredTableAssociationAnalysisRulePolicyProperty
- Defined in:
- clean_rooms/cfn_configured_table_association.rb
Overview
Controls on the query specifications that can be run on an associated configured table.
Instance Attribute Summary collapse
-
#v1 ⇒ AWSCDK::IResolvable, AWSCDK::CleanRooms::CfnConfiguredTableAssociation::ConfiguredTableAssociationAnalysisRulePolicyV1Property
readonly
The policy for the configured table association analysis rule.
Class Method Summary collapse
Instance Method Summary collapse
-
#initialize(v1:) ⇒ ConfiguredTableAssociationAnalysisRulePolicyProperty
constructor
A new instance of ConfiguredTableAssociationAnalysisRulePolicyProperty.
- #to_jsii ⇒ Object
Constructor Details
#initialize(v1:) ⇒ ConfiguredTableAssociationAnalysisRulePolicyProperty
Returns a new instance of ConfiguredTableAssociationAnalysisRulePolicyProperty.
740 741 742 743 |
# File 'clean_rooms/cfn_configured_table_association.rb', line 740 def initialize(v1:) @v1 = v1.is_a?(Hash) ? ::AWSCDK::CleanRooms::CfnConfiguredTableAssociation::ConfiguredTableAssociationAnalysisRulePolicyV1Property.new(**v1.transform_keys(&:to_sym)) : v1 Jsii::Type.check_type(@v1, JSON.parse(Base64.strict_decode64("eyJ1bmlvbiI6eyJ0eXBlcyI6W3siZnFuIjoiYXdzLWNkay1saWIuSVJlc29sdmFibGUifSx7ImZxbiI6ImF3cy1jZGstbGliLmF3c19jbGVhbnJvb21zLkNmbkNvbmZpZ3VyZWRUYWJsZUFzc29jaWF0aW9uLkNvbmZpZ3VyZWRUYWJsZUFzc29jaWF0aW9uQW5hbHlzaXNSdWxlUG9saWN5VjFQcm9wZXJ0eSJ9XX19")), "v1") end |
Instance Attribute Details
#v1 ⇒ AWSCDK::IResolvable, AWSCDK::CleanRooms::CfnConfiguredTableAssociation::ConfiguredTableAssociationAnalysisRulePolicyV1Property (readonly)
The policy for the configured table association analysis rule.
749 750 751 |
# File 'clean_rooms/cfn_configured_table_association.rb', line 749 def v1 @v1 end |
Class Method Details
.jsii_properties ⇒ Object
751 752 753 754 755 |
# File 'clean_rooms/cfn_configured_table_association.rb', line 751 def self.jsii_properties { :v1 => "v1", } end |
Instance Method Details
#to_jsii ⇒ Object
757 758 759 760 761 762 763 |
# File 'clean_rooms/cfn_configured_table_association.rb', line 757 def to_jsii result = {} result.merge!({ "v1" => @v1, }) result.compact end |