Class: Aws::ManagedBlockchain::Types::NodeFabricLogPublishingConfiguration
- Inherits:
-
Struct
- Object
- Struct
- Aws::ManagedBlockchain::Types::NodeFabricLogPublishingConfiguration
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-managedblockchain/types.rb
Overview
Configuration properties for logging events associated with a peer node owned by a member in a Managed Blockchain network.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#chaincode_logs ⇒ Types::LogConfigurations
Configuration properties for logging events associated with chaincode execution on a peer node.
-
#peer_logs ⇒ Types::LogConfigurations
Configuration properties for a peer node log.
Instance Attribute Details
#chaincode_logs ⇒ Types::LogConfigurations
Configuration properties for logging events associated with chaincode execution on a peer node. Chaincode logs contain the results of instantiating, invoking, and querying the chaincode. A peer can run multiple instances of chaincode. When enabled, a log stream is created for all chaincodes, with an individual log stream for each chaincode.
2220 2221 2222 2223 2224 2225 |
# File 'lib/aws-sdk-managedblockchain/types.rb', line 2220 class NodeFabricLogPublishingConfiguration < Struct.new( :chaincode_logs, :peer_logs) SENSITIVE = [] include Aws::Structure end |
#peer_logs ⇒ Types::LogConfigurations
Configuration properties for a peer node log. Peer node logs contain messages generated when your client submits transaction proposals to peer nodes, requests to join channels, enrolls an admin peer, and lists the chaincode instances on a peer node.
2220 2221 2222 2223 2224 2225 |
# File 'lib/aws-sdk-managedblockchain/types.rb', line 2220 class NodeFabricLogPublishingConfiguration < Struct.new( :chaincode_logs, :peer_logs) SENSITIVE = [] include Aws::Structure end |