Class: AWSCDK::Connect::CfnQuickConnect::UserQuickConnectConfigProperty
- Inherits:
-
Jsii::Struct
- Object
- Jsii::Struct
- AWSCDK::Connect::CfnQuickConnect::UserQuickConnectConfigProperty
- Defined in:
- connect/cfn_quick_connect.rb
Overview
Contains information about the quick connect configuration settings for a user.
The contact flow must be of type Transfer to Agent.
Instance Attribute Summary collapse
-
#contact_flow_arn ⇒ String
readonly
The Amazon Resource Name (ARN) of the flow.
-
#user_arn ⇒ String
readonly
The Amazon Resource Name (ARN) of the user.
Class Method Summary collapse
Instance Method Summary collapse
-
#initialize(contact_flow_arn:, user_arn:) ⇒ UserQuickConnectConfigProperty
constructor
A new instance of UserQuickConnectConfigProperty.
- #to_jsii ⇒ Object
Constructor Details
#initialize(contact_flow_arn:, user_arn:) ⇒ UserQuickConnectConfigProperty
Returns a new instance of UserQuickConnectConfigProperty.
732 733 734 735 736 737 |
# File 'connect/cfn_quick_connect.rb', line 732 def initialize(contact_flow_arn:, user_arn:) @contact_flow_arn = contact_flow_arn Jsii::Type.check_type(@contact_flow_arn, JSON.parse(Base64.strict_decode64("eyJwcmltaXRpdmUiOiJzdHJpbmcifQ==")), "contactFlowArn") @user_arn = user_arn Jsii::Type.check_type(@user_arn, JSON.parse(Base64.strict_decode64("eyJwcmltaXRpdmUiOiJzdHJpbmcifQ==")), "userArn") end |
Instance Attribute Details
#contact_flow_arn ⇒ String (readonly)
The Amazon Resource Name (ARN) of the flow.
743 744 745 |
# File 'connect/cfn_quick_connect.rb', line 743 def contact_flow_arn @contact_flow_arn end |
#user_arn ⇒ String (readonly)
The Amazon Resource Name (ARN) of the user.
748 749 750 |
# File 'connect/cfn_quick_connect.rb', line 748 def user_arn @user_arn end |
Class Method Details
.jsii_properties ⇒ Object
750 751 752 753 754 755 |
# File 'connect/cfn_quick_connect.rb', line 750 def self.jsii_properties { :contact_flow_arn => "contactFlowArn", :user_arn => "userArn", } end |
Instance Method Details
#to_jsii ⇒ Object
757 758 759 760 761 762 763 764 |
# File 'connect/cfn_quick_connect.rb', line 757 def to_jsii result = {} result.merge!({ "contactFlowArn" => @contact_flow_arn, "userArn" => @user_arn, }) result.compact end |