Module: AWSCDK::AppConfig::IEventDestination
- Included in:
- EventBridgeDestination, LambdaDestination, SNSDestination, SQSDestination
- Defined in:
- app_config/i_event_destination.rb
Overview
Implemented by allowed extension event destinations.
Class Method Summary collapse
Instance Method Summary collapse
-
#extension_uri ⇒ String
The URI of the extension event destination.
-
#policy_document ⇒ AWSCDK::IAM::PolicyDocument?
The IAM policy document to invoke the event destination.
-
#type ⇒ AWSCDK::AppConfig::SourceType
The type of the extension event destination.
Class Method Details
.jsii_overridable_methods ⇒ Object
28 29 30 31 32 33 34 |
# File 'app_config/i_event_destination.rb', line 28 def self.jsii_overridable_methods { :extension_uri => { kind: :property, name: "extensionUri", is_optional: false }, :type => { kind: :property, name: "type", is_optional: false }, :policy_document => { kind: :property, name: "policyDocument", is_optional: true }, } end |
Instance Method Details
#extension_uri ⇒ String
The URI of the extension event destination.
10 11 12 |
# File 'app_config/i_event_destination.rb', line 10 def extension_uri() jsii_get_property("extensionUri") end |
#policy_document ⇒ AWSCDK::IAM::PolicyDocument?
The IAM policy document to invoke the event destination.
24 25 26 |
# File 'app_config/i_event_destination.rb', line 24 def policy_document() jsii_get_property("policyDocument") end |
#type ⇒ AWSCDK::AppConfig::SourceType
The type of the extension event destination.
17 18 19 |
# File 'app_config/i_event_destination.rb', line 17 def type() jsii_get_property("type") end |