Class: AWSCDK::AppIntegrations::CfnApplication::ContactHandlingProperty
- Inherits:
-
Jsii::Struct
- Object
- Jsii::Struct
- AWSCDK::AppIntegrations::CfnApplication::ContactHandlingProperty
- Defined in:
- app_integrations/cfn_application.rb
Overview
Instance Attribute Summary collapse
- #scope ⇒ String readonly
Class Method Summary collapse
Instance Method Summary collapse
-
#initialize(scope:) ⇒ ContactHandlingProperty
constructor
A new instance of ContactHandlingProperty.
- #to_jsii ⇒ Object
Constructor Details
#initialize(scope:) ⇒ ContactHandlingProperty
Returns a new instance of ContactHandlingProperty.
714 715 716 717 |
# File 'app_integrations/cfn_application.rb', line 714 def initialize(scope:) @scope = scope Jsii::Type.check_type(@scope, JSON.parse(Base64.strict_decode64("eyJwcmltaXRpdmUiOiJzdHJpbmcifQ==")), "scope") end |
Instance Attribute Details
#scope ⇒ String (readonly)
721 722 723 |
# File 'app_integrations/cfn_application.rb', line 721 def scope @scope end |
Class Method Details
.jsii_properties ⇒ Object
723 724 725 726 727 |
# File 'app_integrations/cfn_application.rb', line 723 def self.jsii_properties { :scope => "scope", } end |
Instance Method Details
#to_jsii ⇒ Object
729 730 731 732 733 734 735 |
# File 'app_integrations/cfn_application.rb', line 729 def to_jsii result = {} result.merge!({ "scope" => @scope, }) result.compact end |