Class: Aws::ManagedBlockchain::Types::Invitation
- Inherits:
-
Struct
- Object
- Struct
- Aws::ManagedBlockchain::Types::Invitation
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-managedblockchain/types.rb
Overview
An invitation to an Amazon Web Services account to create a member and join the network.
Applies only to Hyperledger Fabric.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#arn ⇒ String
The Amazon Resource Name (ARN) of the invitation.
-
#creation_date ⇒ Time
The date and time that the invitation was created.
-
#expiration_date ⇒ Time
The date and time that the invitation expires.
-
#invitation_id ⇒ String
The unique identifier for the invitation.
-
#network_summary ⇒ Types::NetworkSummary
A summary of network configuration properties.
-
#status ⇒ String
The status of the invitation:.
Instance Attribute Details
#arn ⇒ String
The Amazon Resource Name (ARN) of the invitation. For more information about ARNs and their format, see [Amazon Resource Names (ARNs)] in the *Amazon Web Services General Reference*.
[1]: docs.aws.amazon.com/general/latest/gr/aws-arns-and-namespaces.html
840 841 842 843 844 845 846 847 848 849 |
# File 'lib/aws-sdk-managedblockchain/types.rb', line 840 class Invitation < Struct.new( :invitation_id, :creation_date, :expiration_date, :status, :network_summary, :arn) SENSITIVE = [] include Aws::Structure end |
#creation_date ⇒ Time
The date and time that the invitation was created.
840 841 842 843 844 845 846 847 848 849 |
# File 'lib/aws-sdk-managedblockchain/types.rb', line 840 class Invitation < Struct.new( :invitation_id, :creation_date, :expiration_date, :status, :network_summary, :arn) SENSITIVE = [] include Aws::Structure end |
#expiration_date ⇒ Time
The date and time that the invitation expires. This is the CreationDate plus the ProposalDurationInHours that is specified in the ProposalThresholdPolicy. After this date and time, the invitee can no longer create a member and join the network using this InvitationId.
840 841 842 843 844 845 846 847 848 849 |
# File 'lib/aws-sdk-managedblockchain/types.rb', line 840 class Invitation < Struct.new( :invitation_id, :creation_date, :expiration_date, :status, :network_summary, :arn) SENSITIVE = [] include Aws::Structure end |
#invitation_id ⇒ String
The unique identifier for the invitation.
840 841 842 843 844 845 846 847 848 849 |
# File 'lib/aws-sdk-managedblockchain/types.rb', line 840 class Invitation < Struct.new( :invitation_id, :creation_date, :expiration_date, :status, :network_summary, :arn) SENSITIVE = [] include Aws::Structure end |
#network_summary ⇒ Types::NetworkSummary
A summary of network configuration properties.
840 841 842 843 844 845 846 847 848 849 |
# File 'lib/aws-sdk-managedblockchain/types.rb', line 840 class Invitation < Struct.new( :invitation_id, :creation_date, :expiration_date, :status, :network_summary, :arn) SENSITIVE = [] include Aws::Structure end |
#status ⇒ String
The status of the invitation:
-
PENDING- The invitee hasn’t created a member to join the network, and the invitation hasn’t yet expired. -
ACCEPTING- The invitee has begun creating a member, and creation hasn’t yet completed. -
ACCEPTED- The invitee created a member and joined the network using theInvitationID. -
REJECTED- The invitee rejected the invitation. -
EXPIRED- The invitee neither created a member nor rejected the invitation before theExpirationDate.
840 841 842 843 844 845 846 847 848 849 |
# File 'lib/aws-sdk-managedblockchain/types.rb', line 840 class Invitation < Struct.new( :invitation_id, :creation_date, :expiration_date, :status, :network_summary, :arn) SENSITIVE = [] include Aws::Structure end |