Class: Aws::Organizations::Types::HandshakeParty

Inherits:
Struct
  • Object
show all
Includes:
Structure
Defined in:
lib/aws-sdk-organizations/types.rb

Overview

Note:

When making an API call, you may pass HandshakeParty data as a hash:

{
  id: "HandshakePartyId", # required
  type: "ACCOUNT", # required, accepts ACCOUNT, ORGANIZATION, EMAIL
}

Identifies a participant in a handshake.

Instance Attribute Summary collapse

Instance Attribute Details

#idString

The unique identifier (ID) for the party.

The [regex pattern] for handshake ID string requires “h-” followed by from 8 to 32 lower-case letters or digits.

[1]: wikipedia.org/wiki/regex

Returns:

  • (String)


1301
1302
1303
1304
1305
# File 'lib/aws-sdk-organizations/types.rb', line 1301

class HandshakeParty < Struct.new(
  :id,
  :type)
  include Aws::Structure
end

#typeString

The type of party.

Returns:

  • (String)


1301
1302
1303
1304
1305
# File 'lib/aws-sdk-organizations/types.rb', line 1301

class HandshakeParty < Struct.new(
  :id,
  :type)
  include Aws::Structure
end