Class: Aws::Organizations::Types::DeclineHandshakeRequest

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

Overview

Note:

When making an API call, you may pass DeclineHandshakeRequest data as a hash:

{
  handshake_id: "HandshakeId", # required
}

Instance Attribute Summary collapse

Instance Attribute Details

#handshake_idString

The unique identifier (ID) of the handshake that you want to decline. You can get the ID from the ListHandshakesForAccount operation.

The [regex pattern] for handshake ID string requires “h-” followed by from 8 to 32 lower-case letters or digits.

[1]: wikipedia.org/wiki/regex

Returns:

  • (String)


615
616
617
618
# File 'lib/aws-sdk-organizations/types.rb', line 615

class DeclineHandshakeRequest < Struct.new(
  :handshake_id)
  include Aws::Structure
end