Class: Aws::Organizations::Types::HandshakeFilter
- Inherits:
-
Struct
- Object
- Struct
- Aws::Organizations::Types::HandshakeFilter
- Defined in:
- gems/aws-sdk-organizations/lib/aws-sdk-organizations/types.rb
Overview
Note:
When making an API call, you may pass HandshakeFilter data as a hash:
{
action_type: "INVITE", # accepts INVITE, ENABLE_ALL_FEATURES, APPROVE_ALL_FEATURES, ADD_ORGANIZATIONS_SERVICE_LINKED_ROLE
parent_handshake_id: "HandshakeId",
}
Specifies the criteria that are used to select the handshakes for the operation.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#action_type ⇒ String
Specifies the type of handshake action.
-
#parent_handshake_id ⇒ String
Specifies the parent handshake.
Instance Attribute Details
#action_type ⇒ String
Specifies the type of handshake action.
If you specify ActionType
, you cannot also specify
ParentHandshakeId
.
2496 2497 2498 2499 2500 2501 |
# File 'gems/aws-sdk-organizations/lib/aws-sdk-organizations/types.rb', line 2496 class HandshakeFilter < Struct.new( :action_type, :parent_handshake_id) SENSITIVE = [] include Aws::Structure end |
#parent_handshake_id ⇒ String
Specifies the parent handshake. Only used for handshake types that are a child of another type.
If you specify ParentHandshakeId
, you cannot also specify
ActionType
.
The regex pattern for handshake ID string requires "h-" followed by from 8 to 32 lowercase letters or digits.
2496 2497 2498 2499 2500 2501 |
# File 'gems/aws-sdk-organizations/lib/aws-sdk-organizations/types.rb', line 2496 class HandshakeFilter < Struct.new( :action_type, :parent_handshake_id) SENSITIVE = [] include Aws::Structure end |