Class: Aws::Organizations::Types::HandshakeParty
- Inherits:
-
Struct
- Object
- Struct
- Aws::Organizations::Types::HandshakeParty
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-organizations/types.rb
Overview
Identifies a participant in a handshake.
Constant Summary collapse
- SENSITIVE =
[:id]
Instance Attribute Summary collapse
-
#id ⇒ String
The unique identifier (ID) for the party.
-
#type ⇒ String
The type of party.
Instance Attribute Details
#id ⇒ String
The unique identifier (ID) for the party.
The [regex pattern] for handshake ID string requires “h-” followed by from 8 to 32 lowercase letters or digits.
2366 2367 2368 2369 2370 2371 |
# File 'lib/aws-sdk-organizations/types.rb', line 2366 class HandshakeParty < Struct.new( :id, :type) SENSITIVE = [:id] include Aws::Structure end |
#type ⇒ String
The type of party.
2366 2367 2368 2369 2370 2371 |
# File 'lib/aws-sdk-organizations/types.rb', line 2366 class HandshakeParty < Struct.new( :id, :type) SENSITIVE = [:id] include Aws::Structure end |