Class: AWSCDK::ManagedBlockchain::CfnMember::MemberFrameworkConfigurationProperty
- Inherits:
-
Jsii::Struct
- Object
- Jsii::Struct
- AWSCDK::ManagedBlockchain::CfnMember::MemberFrameworkConfigurationProperty
- Defined in:
- managed_blockchain/cfn_member.rb
Overview
Configuration properties relevant to a member for the blockchain framework that the Managed Blockchain network uses.
Instance Attribute Summary collapse
-
#member_fabric_configuration ⇒ AWSCDK::IResolvable, ...
readonly
Configuration properties for Hyperledger Fabric.
Class Method Summary collapse
Instance Method Summary collapse
-
#initialize(member_fabric_configuration: nil) ⇒ MemberFrameworkConfigurationProperty
constructor
A new instance of MemberFrameworkConfigurationProperty.
- #to_jsii ⇒ Object
Constructor Details
#initialize(member_fabric_configuration: nil) ⇒ MemberFrameworkConfigurationProperty
Returns a new instance of MemberFrameworkConfigurationProperty.
732 733 734 735 |
# File 'managed_blockchain/cfn_member.rb', line 732 def initialize(member_fabric_configuration: nil) @member_fabric_configuration = member_fabric_configuration.is_a?(Hash) ? ::AWSCDK::ManagedBlockchain::CfnMember::MemberFabricConfigurationProperty.new(**member_fabric_configuration.transform_keys(&:to_sym)) : member_fabric_configuration Jsii::Type.check_type(@member_fabric_configuration, JSON.parse(Base64.strict_decode64("eyJ1bmlvbiI6eyJ0eXBlcyI6W3siZnFuIjoiYXdzLWNkay1saWIuSVJlc29sdmFibGUifSx7ImZxbiI6ImF3cy1jZGstbGliLmF3c19tYW5hZ2VkYmxvY2tjaGFpbi5DZm5NZW1iZXIuTWVtYmVyRmFicmljQ29uZmlndXJhdGlvblByb3BlcnR5In1dfX0=")), "memberFabricConfiguration") unless @member_fabric_configuration.nil? end |
Instance Attribute Details
#member_fabric_configuration ⇒ AWSCDK::IResolvable, ... (readonly)
Configuration properties for Hyperledger Fabric.
741 742 743 |
# File 'managed_blockchain/cfn_member.rb', line 741 def member_fabric_configuration @member_fabric_configuration end |
Class Method Details
.jsii_properties ⇒ Object
743 744 745 746 747 |
# File 'managed_blockchain/cfn_member.rb', line 743 def self.jsii_properties { :member_fabric_configuration => "memberFabricConfiguration", } end |
Instance Method Details
#to_jsii ⇒ Object
749 750 751 752 753 754 755 |
# File 'managed_blockchain/cfn_member.rb', line 749 def to_jsii result = {} result.merge!({ "memberFabricConfiguration" => @member_fabric_configuration, }) result.compact end |