Class: Aws::Organizations::Types::HandshakeFilter

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

Overview

Contains the filter used to select the handshakes for an operation.

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#action_typeString

The type of handshake.

If you specify ActionType, you cannot also specify ParentHandshakeId.

Returns:

  • (String)


2544
2545
2546
2547
2548
2549
# File 'gems/aws-sdk-organizations/lib/aws-sdk-organizations/types.rb', line 2544

class HandshakeFilter < Struct.new(
  :action_type,
  :parent_handshake_id)
  SENSITIVE = []
  include Aws::Structure
end

#parent_handshake_idString

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.

Returns:

  • (String)


2544
2545
2546
2547
2548
2549
# File 'gems/aws-sdk-organizations/lib/aws-sdk-organizations/types.rb', line 2544

class HandshakeFilter < Struct.new(
  :action_type,
  :parent_handshake_id)
  SENSITIVE = []
  include Aws::Structure
end