Class: Aws::ManagedBlockchain::Types::NodeConfiguration
- Inherits:
-
Struct
- Object
- Struct
- Aws::ManagedBlockchain::Types::NodeConfiguration
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-managedblockchain/types.rb
Overview
Configuration properties of a node.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#availability_zone ⇒ String
The Availability Zone in which the node exists.
-
#instance_type ⇒ String
The Amazon Managed Blockchain instance type for the node.
-
#log_publishing_configuration ⇒ Types::NodeLogPublishingConfiguration
Configuration properties for logging events associated with a peer node on a Hyperledger Fabric network on Managed Blockchain.
-
#state_db ⇒ String
The state database that the node uses.
Instance Attribute Details
#availability_zone ⇒ String
The Availability Zone in which the node exists. Required for Ethereum nodes.
2087 2088 2089 2090 2091 2092 2093 2094 |
# File 'lib/aws-sdk-managedblockchain/types.rb', line 2087 class NodeConfiguration < Struct.new( :instance_type, :availability_zone, :log_publishing_configuration, :state_db) SENSITIVE = [] include Aws::Structure end |
#instance_type ⇒ String
The Amazon Managed Blockchain instance type for the node.
2087 2088 2089 2090 2091 2092 2093 2094 |
# File 'lib/aws-sdk-managedblockchain/types.rb', line 2087 class NodeConfiguration < Struct.new( :instance_type, :availability_zone, :log_publishing_configuration, :state_db) SENSITIVE = [] include Aws::Structure end |
#log_publishing_configuration ⇒ Types::NodeLogPublishingConfiguration
Configuration properties for logging events associated with a peer node on a Hyperledger Fabric network on Managed Blockchain.
2087 2088 2089 2090 2091 2092 2093 2094 |
# File 'lib/aws-sdk-managedblockchain/types.rb', line 2087 class NodeConfiguration < Struct.new( :instance_type, :availability_zone, :log_publishing_configuration, :state_db) SENSITIVE = [] include Aws::Structure end |
#state_db ⇒ String
The state database that the node uses. Values are LevelDB or CouchDB. When using an Amazon Managed Blockchain network with Hyperledger Fabric version 1.4 or later, the default is CouchDB.
Applies only to Hyperledger Fabric.
2087 2088 2089 2090 2091 2092 2093 2094 |
# File 'lib/aws-sdk-managedblockchain/types.rb', line 2087 class NodeConfiguration < Struct.new( :instance_type, :availability_zone, :log_publishing_configuration, :state_db) SENSITIVE = [] include Aws::Structure end |