Class: Aws::ManagedBlockchain::Types::InviteAction
- Inherits:
-
Struct
- Object
- Struct
- Aws::ManagedBlockchain::Types::InviteAction
- Defined in:
- gems/aws-sdk-managedblockchain/lib/aws-sdk-managedblockchain/types.rb
Overview
Note:
When making an API call, you may pass InviteAction data as a hash:
{
principal: "PrincipalString", # required
}
An action to invite a specific AWS account to create a member and join
the network. The InviteAction
is carried out when a Proposal
is
APPROVED
.
Applies only to Hyperledger Fabric.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#principal ⇒ String
The AWS account ID to invite.
Instance Attribute Details
#principal ⇒ String
The AWS account ID to invite.
851 852 853 854 855 |
# File 'gems/aws-sdk-managedblockchain/lib/aws-sdk-managedblockchain/types.rb', line 851 class InviteAction < Struct.new( :principal) SENSITIVE = [] include Aws::Structure end |