Class: Aws::Organizations::Types::HandshakeResource
- Inherits:
-
Struct
- Object
- Struct
- Aws::Organizations::Types::HandshakeResource
- Includes:
- Structure
- Defined in:
- 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 ‘HandshakeResource` objects.
-
#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.
2612 2613 2614 2615 2616 2617 2618 |
# File 'lib/aws-sdk-organizations/types.rb', line 2612 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.
2612 2613 2614 2615 2616 2617 2618 |
# File 'lib/aws-sdk-organizations/types.rb', line 2612 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.
2612 2613 2614 2615 2616 2617 2618 |
# File 'lib/aws-sdk-organizations/types.rb', line 2612 class HandshakeResource < Struct.new( :value, :type, :resources) SENSITIVE = [:value] include Aws::Structure end |