Class: Aws::Organizations::Types::HandshakeResource

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

Overview

Contains additional details for a handshake.

Constant Summary collapse

SENSITIVE =
[:value]

Instance Attribute Summary collapse

Instance Attribute Details

#resourcesArray<Types::HandshakeResource>

An array of HandshakeResource objects. When needed, contains additional details for a handshake. For example, the email address for the sender.

Returns:



2588
2589
2590
2591
2592
2593
2594
# File 'gems/aws-sdk-organizations/lib/aws-sdk-organizations/types.rb', line 2588

class HandshakeResource < Struct.new(
  :value,
  :type,
  :resources)
  SENSITIVE = [:value]
  include Aws::Structure
end

#typeString

The type of information being passed, specifying how the value is to be interpreted by the other party:

  • ACCOUNT: ID for an Amazon Web Services account.

  • ORGANIZATION: ID for an organization.

  • EMAIL: Email address for the recipient.

  • OWNER_EMAIL: Email address for the sender.

  • OWNER_NAME: Name of the sender.

  • NOTES: Additional text included by the sender for the recipient.

Returns:

  • (String)


2588
2589
2590
2591
2592
2593
2594
# File 'gems/aws-sdk-organizations/lib/aws-sdk-organizations/types.rb', line 2588

class HandshakeResource < Struct.new(
  :value,
  :type,
  :resources)
  SENSITIVE = [:value]
  include Aws::Structure
end

#valueString

Additional information for the handshake. The format of the value string must match the requirements of the specified type.

Returns:

  • (String)


2588
2589
2590
2591
2592
2593
2594
# File 'gems/aws-sdk-organizations/lib/aws-sdk-organizations/types.rb', line 2588

class HandshakeResource < Struct.new(
  :value,
  :type,
  :resources)
  SENSITIVE = [:value]
  include Aws::Structure
end