Class: AWSCDK::Connect::CfnSecurityProfile::FlowModuleProperty
- Inherits:
-
Jsii::Struct
- Object
- Jsii::Struct
- AWSCDK::Connect::CfnSecurityProfile::FlowModuleProperty
- Defined in:
- connect/cfn_security_profile.rb
Overview
A first-party application's metadata.
Instance Attribute Summary collapse
-
#flow_module_id ⇒ String
readonly
The identifier of the application that you want to give access to.
-
#type ⇒ String
readonly
The type of the first-party application.
Class Method Summary collapse
Instance Method Summary collapse
-
#initialize(flow_module_id:, type:) ⇒ FlowModuleProperty
constructor
A new instance of FlowModuleProperty.
- #to_jsii ⇒ Object
Constructor Details
#initialize(flow_module_id:, type:) ⇒ FlowModuleProperty
Returns a new instance of FlowModuleProperty.
770 771 772 773 774 775 |
# File 'connect/cfn_security_profile.rb', line 770 def initialize(flow_module_id:, type:) @flow_module_id = flow_module_id Jsii::Type.check_type(@flow_module_id, JSON.parse(Base64.strict_decode64("eyJwcmltaXRpdmUiOiJzdHJpbmcifQ==")), "flowModuleId") @type = type Jsii::Type.check_type(@type, JSON.parse(Base64.strict_decode64("eyJwcmltaXRpdmUiOiJzdHJpbmcifQ==")), "type") end |
Instance Attribute Details
#flow_module_id ⇒ String (readonly)
The identifier of the application that you want to give access to.
781 782 783 |
# File 'connect/cfn_security_profile.rb', line 781 def flow_module_id @flow_module_id end |
#type ⇒ String (readonly)
The type of the first-party application.
786 787 788 |
# File 'connect/cfn_security_profile.rb', line 786 def type @type end |
Class Method Details
.jsii_properties ⇒ Object
788 789 790 791 792 793 |
# File 'connect/cfn_security_profile.rb', line 788 def self.jsii_properties { :flow_module_id => "flowModuleId", :type => "type", } end |
Instance Method Details
#to_jsii ⇒ Object
795 796 797 798 799 800 801 802 |
# File 'connect/cfn_security_profile.rb', line 795 def to_jsii result = {} result.merge!({ "flowModuleId" => @flow_module_id, "type" => @type, }) result.compact end |