Class: AWSCDK::SecurityHub::CfnInsight::BooleanFilterProperty

Inherits:
Jsii::Struct
  • Object
show all
Defined in:
security_hub/cfn_insight.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:



1696
1697
1698
1699
# File 'security_hub/cfn_insight.rb', line 1696

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.



1705
1706
1707
# File 'security_hub/cfn_insight.rb', line 1705

def value
  @value
end

Class Method Details

.jsii_propertiesObject



1707
1708
1709
1710
1711
# File 'security_hub/cfn_insight.rb', line 1707

def self.jsii_properties
  {
    :value => "value",
  }
end

Instance Method Details

#to_jsiiObject



1713
1714
1715
1716
1717
1718
1719
# File 'security_hub/cfn_insight.rb', line 1713

def to_jsii
  result = {}
  result.merge!({
    "value" => @value,
  })
  result.compact
end