Class: AWSCDK::AppIntegrations::CfnEventIntegration::EventFilterProperty
- Inherits:
-
Jsii::Struct
- Object
- Jsii::Struct
- AWSCDK::AppIntegrations::CfnEventIntegration::EventFilterProperty
- Defined in:
- app_integrations/cfn_event_integration.rb
Overview
The event integration filter.
Instance Attribute Summary collapse
-
#source ⇒ String
readonly
The source of the events.
Class Method Summary collapse
Instance Method Summary collapse
-
#initialize(source:) ⇒ EventFilterProperty
constructor
A new instance of EventFilterProperty.
- #to_jsii ⇒ Object
Constructor Details
#initialize(source:) ⇒ EventFilterProperty
Returns a new instance of EventFilterProperty.
598 599 600 601 |
# File 'app_integrations/cfn_event_integration.rb', line 598 def initialize(source:) @source = source Jsii::Type.check_type(@source, JSON.parse(Base64.strict_decode64("eyJwcmltaXRpdmUiOiJzdHJpbmcifQ==")), "source") end |
Instance Attribute Details
#source ⇒ String (readonly)
The source of the events.
607 608 609 |
# File 'app_integrations/cfn_event_integration.rb', line 607 def source @source end |
Class Method Details
.jsii_properties ⇒ Object
609 610 611 612 613 |
# File 'app_integrations/cfn_event_integration.rb', line 609 def self.jsii_properties { :source => "source", } end |
Instance Method Details
#to_jsii ⇒ Object
615 616 617 618 619 620 621 |
# File 'app_integrations/cfn_event_integration.rb', line 615 def to_jsii result = {} result.merge!({ "source" => @source, }) result.compact end |