Class: AWSCDK::Connect::CfnContactFlowModule::ExternalInvocationConfigurationProperty

Inherits:
Jsii::Struct
  • Object
show all
Defined in:
connect/cfn_contact_flow_module.rb

Overview

The external invocation configuration for the flow module.

Instance Attribute Summary collapse

Class Method Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(enabled: nil) ⇒ ExternalInvocationConfigurationProperty

Returns a new instance of ExternalInvocationConfigurationProperty.

Parameters:

  • enabled (Boolean, AWSCDK::IResolvable, nil) (defaults to: nil)

    Enable external invocation.



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

#enabledBoolean, ... (readonly)

Enable external invocation.



626
627
628
# File 'connect/cfn_contact_flow_module.rb', line 626

def enabled
  @enabled
end

Class Method Details

.jsii_propertiesObject



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_jsiiObject



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