Class: AWSCDK::Interfaces::AWSConnect::ContactFlowReference
- Inherits:
-
Jsii::Struct
- Object
- Jsii::Struct
- AWSCDK::Interfaces::AWSConnect::ContactFlowReference
- Defined in:
- interfaces/aws_connect/contact_flow_reference.rb
Overview
A reference to a ContactFlow resource.
Instance Attribute Summary collapse
-
#contact_flow_arn ⇒ String
readonly
The ContactFlowArn of the ContactFlow resource.
Class Method Summary collapse
Instance Method Summary collapse
-
#initialize(contact_flow_arn:) ⇒ ContactFlowReference
constructor
A new instance of ContactFlowReference.
- #to_jsii ⇒ Object
Constructor Details
#initialize(contact_flow_arn:) ⇒ ContactFlowReference
Returns a new instance of ContactFlowReference.
8 9 10 11 |
# File 'interfaces/aws_connect/contact_flow_reference.rb', line 8 def initialize(contact_flow_arn:) @contact_flow_arn = contact_flow_arn Jsii::Type.check_type(@contact_flow_arn, JSON.parse(Base64.strict_decode64("eyJwcmltaXRpdmUiOiJzdHJpbmcifQ==")), "contactFlowArn") end |
Instance Attribute Details
#contact_flow_arn ⇒ String (readonly)
The ContactFlowArn of the ContactFlow resource.
16 17 18 |
# File 'interfaces/aws_connect/contact_flow_reference.rb', line 16 def contact_flow_arn @contact_flow_arn end |
Class Method Details
.jsii_properties ⇒ Object
18 19 20 21 22 |
# File 'interfaces/aws_connect/contact_flow_reference.rb', line 18 def self.jsii_properties { :contact_flow_arn => "contactFlowArn", } end |
Instance Method Details
#to_jsii ⇒ Object
24 25 26 27 28 29 30 |
# File 'interfaces/aws_connect/contact_flow_reference.rb', line 24 def to_jsii result = {} result.merge!({ "contactFlowArn" => @contact_flow_arn, }) result.compact end |