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
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
.
2318 2319 2320 2321 2322 2323 |
# File 'gems/aws-sdk-organizations/lib/aws-sdk-organizations/types.rb', line 2318 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.
2318 2319 2320 2321 2322 2323 |
# File 'gems/aws-sdk-organizations/lib/aws-sdk-organizations/types.rb', line 2318 class HandshakeFilter < Struct.new( :action_type, :parent_handshake_id) SENSITIVE = [] include Aws::Structure end |