Class: Aws::Organizations::Types::HandshakeParty
- Inherits:
-
Struct
- Object
- Struct
- Aws::Organizations::Types::HandshakeParty
- Defined in:
- gems/aws-sdk-organizations/lib/aws-sdk-organizations/types.rb
Overview
Contains details for a participant in a handshake.
Constant Summary collapse
- SENSITIVE =
[:id]
Instance Attribute Summary collapse
-
#id ⇒ String
ID for the participant: Acccount ID, organization ID, or email address.
-
#type ⇒ String
The type of ID for the participant.
Instance Attribute Details
#id ⇒ String
ID for the participant: Acccount ID, organization ID, or email address.
The regex pattern for handshake ID string requires "h-" followed by from 8 to 32 lowercase letters or digits.
2572 2573 2574 2575 2576 2577 |
# File 'gems/aws-sdk-organizations/lib/aws-sdk-organizations/types.rb', line 2572 class HandshakeParty < Struct.new( :id, :type) SENSITIVE = [:id] include Aws::Structure end |
#type ⇒ String
The type of ID for the participant.
2572 2573 2574 2575 2576 2577 |
# File 'gems/aws-sdk-organizations/lib/aws-sdk-organizations/types.rb', line 2572 class HandshakeParty < Struct.new( :id, :type) SENSITIVE = [:id] include Aws::Structure end |