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

Inherits:
Struct
  • Object
show all
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

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 lowercase letters or digits.

[1]: wikipedia.org/wiki/regex

Returns:

  • (String)


2344
2345
2346
2347
2348
2349
# File 'lib/aws-sdk-organizations/types.rb', line 2344

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

#typeString

The type of party.

Returns:

  • (String)


2344
2345
2346
2347
2348
2349
# File 'lib/aws-sdk-organizations/types.rb', line 2344

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