Class: AWSCDK::SecurityHub::CfnAutomationRuleV2::BooleanFilterProperty
- Inherits:
-
Jsii::Struct
- Object
- Jsii::Struct
- AWSCDK::SecurityHub::CfnAutomationRuleV2::BooleanFilterProperty
- Defined in:
- security_hub/cfn_automation_rule_v2.rb
Overview
Boolean filter for querying findings.
Instance Attribute Summary collapse
-
#value ⇒ Boolean, AWSCDK::IResolvable
readonly
The value of the boolean.
Class Method Summary collapse
Instance Method Summary collapse
-
#initialize(value:) ⇒ BooleanFilterProperty
constructor
A new instance of BooleanFilterProperty.
- #to_jsii ⇒ Object
Constructor Details
#initialize(value:) ⇒ BooleanFilterProperty
Returns a new instance of BooleanFilterProperty.
718 719 720 721 |
# File 'security_hub/cfn_automation_rule_v2.rb', line 718 def initialize(value:) @value = value Jsii::Type.check_type(@value, JSON.parse(Base64.strict_decode64("eyJ1bmlvbiI6eyJ0eXBlcyI6W3sicHJpbWl0aXZlIjoiYm9vbGVhbiJ9LHsiZnFuIjoiYXdzLWNkay1saWIuSVJlc29sdmFibGUifV19fQ==")), "value") end |
Instance Attribute Details
#value ⇒ Boolean, AWSCDK::IResolvable (readonly)
The value of the boolean.
727 728 729 |
# File 'security_hub/cfn_automation_rule_v2.rb', line 727 def value @value end |
Class Method Details
.jsii_properties ⇒ Object
729 730 731 732 733 |
# File 'security_hub/cfn_automation_rule_v2.rb', line 729 def self.jsii_properties { :value => "value", } end |
Instance Method Details
#to_jsii ⇒ Object
735 736 737 738 739 740 741 |
# File 'security_hub/cfn_automation_rule_v2.rb', line 735 def to_jsii result = {} result.merge!({ "value" => @value, }) result.compact end |