Class: AWSCDK::Connect::CfnQuickConnect::QueueQuickConnectConfigProperty
- Inherits:
-
Jsii::Struct
- Object
- Jsii::Struct
- AWSCDK::Connect::CfnQuickConnect::QueueQuickConnectConfigProperty
- Defined in:
- connect/cfn_quick_connect.rb
Overview
Contains information about a queue for a quick connect.
The flow must be of type Transfer to Queue.
Instance Attribute Summary collapse
-
#contact_flow_arn ⇒ String
readonly
The Amazon Resource Name (ARN) of the flow.
-
#queue_arn ⇒ String
readonly
The Amazon Resource Name (ARN) of the queue.
Class Method Summary collapse
Instance Method Summary collapse
-
#initialize(contact_flow_arn:, queue_arn:) ⇒ QueueQuickConnectConfigProperty
constructor
A new instance of QueueQuickConnectConfigProperty.
- #to_jsii ⇒ Object
Constructor Details
#initialize(contact_flow_arn:, queue_arn:) ⇒ QueueQuickConnectConfigProperty
Returns a new instance of QueueQuickConnectConfigProperty.
616 617 618 619 620 621 |
# File 'connect/cfn_quick_connect.rb', line 616 def initialize(contact_flow_arn:, queue_arn:) @contact_flow_arn = contact_flow_arn Jsii::Type.check_type(@contact_flow_arn, JSON.parse(Base64.strict_decode64("eyJwcmltaXRpdmUiOiJzdHJpbmcifQ==")), "contactFlowArn") @queue_arn = queue_arn Jsii::Type.check_type(@queue_arn, JSON.parse(Base64.strict_decode64("eyJwcmltaXRpdmUiOiJzdHJpbmcifQ==")), "queueArn") end |
Instance Attribute Details
#contact_flow_arn ⇒ String (readonly)
The Amazon Resource Name (ARN) of the flow.
627 628 629 |
# File 'connect/cfn_quick_connect.rb', line 627 def contact_flow_arn @contact_flow_arn end |
#queue_arn ⇒ String (readonly)
The Amazon Resource Name (ARN) of the queue.
632 633 634 |
# File 'connect/cfn_quick_connect.rb', line 632 def queue_arn @queue_arn end |
Class Method Details
.jsii_properties ⇒ Object
634 635 636 637 638 639 |
# File 'connect/cfn_quick_connect.rb', line 634 def self.jsii_properties { :contact_flow_arn => "contactFlowArn", :queue_arn => "queueArn", } end |
Instance Method Details
#to_jsii ⇒ Object
641 642 643 644 645 646 647 648 |
# File 'connect/cfn_quick_connect.rb', line 641 def to_jsii result = {} result.merge!({ "contactFlowArn" => @contact_flow_arn, "queueArn" => @queue_arn, }) result.compact end |