Class: AWSCDK::SecurityHub::CfnAutomationRuleV2::BooleanFilterProperty

Inherits:
Jsii::Struct
  • Object
show all
Defined in:
security_hub/cfn_automation_rule_v2.rb

Overview

Boolean filter for querying findings.

Instance Attribute Summary collapse

Class Method Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(value:) ⇒ BooleanFilterProperty

Returns a new instance of BooleanFilterProperty.

Parameters:



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

#valueBoolean, 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_propertiesObject



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_jsiiObject



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