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

Inherits:
Struct
  • Object
show all
Defined in:
gems/aws-sdk-organizations/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.

Returns:

  • (String)


2346
2347
2348
2349
2350
2351
# File 'gems/aws-sdk-organizations/lib/aws-sdk-organizations/types.rb', line 2346

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

#typeString

The type of party.

Returns:

  • (String)


2346
2347
2348
2349
2350
2351
# File 'gems/aws-sdk-organizations/lib/aws-sdk-organizations/types.rb', line 2346

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