Class: AWSCDK::Connect::CfnSecurityProfile::FlowModuleProperty

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

Overview

A first-party application's metadata.

Instance Attribute Summary collapse

Class Method Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(flow_module_id:, type:) ⇒ FlowModuleProperty

Returns a new instance of FlowModuleProperty.

Parameters:

  • flow_module_id (String)

    The identifier of the application that you want to give access to.

  • type (String)

    The type of the first-party application.



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_idString (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

#typeString (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_propertiesObject



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_jsiiObject



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