Class: AWSCDK::SecurityHub::CfnInsight::KeywordFilterProperty
- Inherits:
-
Jsii::Struct
- Object
- Jsii::Struct
- AWSCDK::SecurityHub::CfnInsight::KeywordFilterProperty
- Defined in:
- security_hub/cfn_insight.rb
Overview
A keyword filter for querying findings.
Instance Attribute Summary collapse
-
#value ⇒ String
readonly
A value for the keyword.
Class Method Summary collapse
Instance Method Summary collapse
-
#initialize(value:) ⇒ KeywordFilterProperty
constructor
A new instance of KeywordFilterProperty.
- #to_jsii ⇒ Object
Constructor Details
#initialize(value:) ⇒ KeywordFilterProperty
Returns a new instance of KeywordFilterProperty.
1862 1863 1864 1865 |
# File 'security_hub/cfn_insight.rb', line 1862 def initialize(value:) @value = value Jsii::Type.check_type(@value, JSON.parse(Base64.strict_decode64("eyJwcmltaXRpdmUiOiJzdHJpbmcifQ==")), "value") end |
Instance Attribute Details
#value ⇒ String (readonly)
A value for the keyword.
1871 1872 1873 |
# File 'security_hub/cfn_insight.rb', line 1871 def value @value end |
Class Method Details
.jsii_properties ⇒ Object
1873 1874 1875 1876 1877 |
# File 'security_hub/cfn_insight.rb', line 1873 def self.jsii_properties { :value => "value", } end |
Instance Method Details
#to_jsii ⇒ Object
1879 1880 1881 1882 1883 1884 1885 |
# File 'security_hub/cfn_insight.rb', line 1879 def to_jsii result = {} result.merge!({ "value" => @value, }) result.compact end |