Class: Aws::Organizations::Types::HandshakeResource
- Inherits:
-
Struct
- Object
- Struct
- Aws::Organizations::Types::HandshakeResource
- 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
-
#resources ⇒ Array<Types::HandshakeResource>
An array of
HandshakeResourceobjects. -
#type ⇒ String
The type of information being passed, specifying how the value is to be interpreted by the other party:.
-
#value ⇒ String
Additional information for the handshake.
Instance Attribute Details
#resources ⇒ Array<Types::HandshakeResource>
An array of HandshakeResource objects. When needed, contains
additional details for a handshake. For example, the email address
for the sender.
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 |
#type ⇒ String
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.
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 |
#value ⇒ String
Additional information for the handshake. The format of the value string must match the requirements of the specified type.
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 |