Class: Aws::ManagedBlockchain::Types::VoteSummary
- Inherits:
-
Struct
- Object
- Struct
- Aws::ManagedBlockchain::Types::VoteSummary
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-managedblockchain/types.rb
Overview
Properties of an individual vote that a member cast for a proposal.
Applies only to Hyperledger Fabric.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#member_id ⇒ String
The unique identifier of the member that cast the vote.
-
#member_name ⇒ String
The name of the member that cast the vote.
-
#vote ⇒ String
The vote value, either ‘YES` or `NO`.
Instance Attribute Details
#member_id ⇒ String
The unique identifier of the member that cast the vote.
2827 2828 2829 2830 2831 2832 2833 |
# File 'lib/aws-sdk-managedblockchain/types.rb', line 2827 class VoteSummary < Struct.new( :vote, :member_name, :member_id) SENSITIVE = [] include Aws::Structure end |
#member_name ⇒ String
The name of the member that cast the vote.
2827 2828 2829 2830 2831 2832 2833 |
# File 'lib/aws-sdk-managedblockchain/types.rb', line 2827 class VoteSummary < Struct.new( :vote, :member_name, :member_id) SENSITIVE = [] include Aws::Structure end |
#vote ⇒ String
The vote value, either ‘YES` or `NO`.
2827 2828 2829 2830 2831 2832 2833 |
# File 'lib/aws-sdk-managedblockchain/types.rb', line 2827 class VoteSummary < Struct.new( :vote, :member_name, :member_id) SENSITIVE = [] include Aws::Structure end |