Class: Aws::Organizations::Types::CancelHandshakeRequest
- Inherits:
-
Struct
- Object
- Struct
- Aws::Organizations::Types::CancelHandshakeRequest
- Defined in:
- gems/aws-sdk-organizations/lib/aws-sdk-organizations/types.rb
Overview
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#handshake_id ⇒ String
The unique identifier (ID) of the handshake that you want to cancel.
Instance Attribute Details
#handshake_id ⇒ String
The unique identifier (ID) of the handshake that you want to cancel. You can get the ID from the ListHandshakesForOrganization operation.
The regex pattern for handshake ID string requires "h-" followed by from 8 to 32 lowercase letters or digits.
347 348 349 350 351 |
# File 'gems/aws-sdk-organizations/lib/aws-sdk-organizations/types.rb', line 347 class CancelHandshakeRequest < Struct.new( :handshake_id) SENSITIVE = [] include Aws::Structure end |