Class: Aws::ManagedBlockchain::Types::ProposalActions
- Inherits:
-
Struct
- Object
- Struct
- Aws::ManagedBlockchain::Types::ProposalActions
- Defined in:
- gems/aws-sdk-managedblockchain/lib/aws-sdk-managedblockchain/types.rb
Overview
Note:
When making an API call, you may pass ProposalActions data as a hash:
{
invitations: [
{
principal: "PrincipalString", # required
},
],
removals: [
{
member_id: "ResourceIdString", # required
},
],
}
The actions to carry out if a proposal is APPROVED
.
Applies only to Hyperledger Fabric.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#invitations ⇒ Array<Types::InviteAction>
The actions to perform for an
APPROVED
proposal to invite an AWS account to create a member and join the network. -
#removals ⇒ Array<Types::RemoveAction>
The actions to perform for an
APPROVED
proposal to remove a member from the network, which deletes the member and all associated member resources from the network.
Instance Attribute Details
#invitations ⇒ Array<Types::InviteAction>
The actions to perform for an APPROVED
proposal to invite an AWS
account to create a member and join the network.
2467 2468 2469 2470 2471 2472 |
# File 'gems/aws-sdk-managedblockchain/lib/aws-sdk-managedblockchain/types.rb', line 2467 class ProposalActions < Struct.new( :invitations, :removals) SENSITIVE = [] include Aws::Structure end |
#removals ⇒ Array<Types::RemoveAction>
The actions to perform for an APPROVED
proposal to remove a member
from the network, which deletes the member and all associated member
resources from the network.
2467 2468 2469 2470 2471 2472 |
# File 'gems/aws-sdk-managedblockchain/lib/aws-sdk-managedblockchain/types.rb', line 2467 class ProposalActions < Struct.new( :invitations, :removals) SENSITIVE = [] include Aws::Structure end |