Handshake class

Contains information that must be exchanged to securely establish a relationship between two accounts (an originator and a recipient). For example, when a management account (the originator) invites another account (the recipient) to join its organization, the two accounts exchange information as a series of handshake requests and responses.

Note: Handshakes that are CANCELED, ACCEPTED, or DECLINED show up in lists for only 30 days after entering that state After that they are deleted.

Constructors

Handshake({ActionType? action, String? arn, DateTime? expirationTimestamp, String? id, List<HandshakeParty>? parties, DateTime? requestedTimestamp, List<HandshakeResource>? resources, HandshakeState? state})
Handshake.fromJson(Map<String, dynamic> json)
factory

Properties

action ActionType?
The type of handshake, indicating what action occurs when the recipient accepts the handshake. The following handshake types are supported:
final
arn String?
The Amazon Resource Name (ARN) of a handshake.
final
expirationTimestamp DateTime?
The date and time that the handshake expires. If the recipient of the handshake request fails to respond before the specified date and time, the handshake becomes inactive and is no longer valid.
final
hashCode int
The hash code for this object.
no setterinherited
id String?
The unique identifier (ID) of a handshake. The originating account creates the ID when it initiates the handshake.
final
parties List<HandshakeParty>?
Information about the two accounts that are participating in the handshake.
final
requestedTimestamp DateTime?
The date and time that the handshake request was made.
final
resources List<HandshakeResource>?
Additional information that is needed to process the handshake.
final
runtimeType Type
A representation of the runtime type of the object.
no setterinherited
state HandshakeState?
The current state of the handshake. Use the state to trace the flow of the handshake through the process from its creation to its acceptance. The meaning of each of the valid values is as follows:
final

Methods

noSuchMethod(Invocation invocation) → dynamic
Invoked when a nonexistent method or property is accessed.
inherited
toString() String
A string representation of this object.
inherited

Operators

operator ==(Object other) bool
The equality operator.
inherited