Class: AWSCDK::Connect::CfnContactFlowModule::ExternalInvocationConfigurationProperty
- Inherits:
-
Jsii::Struct
- Object
- Jsii::Struct
- AWSCDK::Connect::CfnContactFlowModule::ExternalInvocationConfigurationProperty
- Defined in:
- connect/cfn_contact_flow_module.rb
Overview
The external invocation configuration for the flow module.
Instance Attribute Summary collapse
-
#enabled ⇒ Boolean, ...
readonly
Enable external invocation.
Class Method Summary collapse
Instance Method Summary collapse
-
#initialize(enabled: nil) ⇒ ExternalInvocationConfigurationProperty
constructor
A new instance of ExternalInvocationConfigurationProperty.
- #to_jsii ⇒ Object
Constructor Details
#initialize(enabled: nil) ⇒ ExternalInvocationConfigurationProperty
Returns a new instance of ExternalInvocationConfigurationProperty.
617 618 619 620 |
# File 'connect/cfn_contact_flow_module.rb', line 617 def initialize(enabled: nil) @enabled = enabled Jsii::Type.check_type(@enabled, JSON.parse(Base64.strict_decode64("eyJ1bmlvbiI6eyJ0eXBlcyI6W3sicHJpbWl0aXZlIjoiYm9vbGVhbiJ9LHsiZnFuIjoiYXdzLWNkay1saWIuSVJlc29sdmFibGUifV19fQ==")), "enabled") unless @enabled.nil? end |
Instance Attribute Details
#enabled ⇒ Boolean, ... (readonly)
Enable external invocation.
626 627 628 |
# File 'connect/cfn_contact_flow_module.rb', line 626 def enabled @enabled end |
Class Method Details
.jsii_properties ⇒ Object
628 629 630 631 632 |
# File 'connect/cfn_contact_flow_module.rb', line 628 def self.jsii_properties { :enabled => "enabled", } end |
Instance Method Details
#to_jsii ⇒ Object
634 635 636 637 638 639 640 |
# File 'connect/cfn_contact_flow_module.rb', line 634 def to_jsii result = {} result.merge!({ "enabled" => @enabled, }) result.compact end |