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
875 876 877 878 879 880 881 882 883 884 |
# File 'lib/aws-sdk-managedblockchain/types.rb', line 875 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.
875 876 877 878 879 880 881 882 883 884 |
# File 'lib/aws-sdk-managedblockchain/types.rb', line 875 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`.
875 876 877 878 879 880 881 882 883 884 |
# File 'lib/aws-sdk-managedblockchain/types.rb', line 875 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.
875 876 877 878 879 880 881 882 883 884 |
# File 'lib/aws-sdk-managedblockchain/types.rb', line 875 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.
875 876 877 878 879 880 881 882 883 884 |
# File 'lib/aws-sdk-managedblockchain/types.rb', line 875 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 the `InvitationID`.
-
‘REJECTED` - The invitee rejected the invitation.
-
‘EXPIRED` - The invitee neither created a member nor rejected the invitation before the `ExpirationDate`.
875 876 877 878 879 880 881 882 883 884 |
# File 'lib/aws-sdk-managedblockchain/types.rb', line 875 class Invitation < Struct.new( :invitation_id, :creation_date, :expiration_date, :status, :network_summary, :arn) SENSITIVE = [] include Aws::Structure end |