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

Inherits:
Struct
  • Object
show all
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

Instance Attribute Details

#action_typeString

Specifies the type of handshake action.

If you specify ActionType, you cannot also specify ParentHandshakeId.

Returns:

  • (String)


2307
2308
2309
2310
2311
2312
# File 'gems/aws-sdk-organizations/lib/aws-sdk-organizations/types.rb', line 2307

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

#parent_handshake_idString

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.

Returns:

  • (String)


2307
2308
2309
2310
2311
2312
# File 'gems/aws-sdk-organizations/lib/aws-sdk-organizations/types.rb', line 2307

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