Method: Aws::Drs::Client#stop_failback

Defined in:
lib/aws-sdk-drs/client.rb

#stop_failback(params = {}) ⇒ Struct

Stops the failback process for a specified Recovery Instance. This changes the Failback State of the Recovery Instance back to FAILBACK_NOT_STARTED.

Examples:

Request syntax with placeholder values


resp = client.stop_failback({
  recovery_instance_id: "RecoveryInstanceID", # required
})

Parameters:

  • params (Hash) (defaults to: {})

    ({})

Options Hash (params):

  • :recovery_instance_id (required, String)

    The ID of the Recovery Instance we want to stop failback for.

Returns:

  • (Struct)

    Returns an empty response.

See Also:



2783
2784
2785
2786
# File 'lib/aws-sdk-drs/client.rb', line 2783

def stop_failback(params = {}, options = {})
  req = build_request(:stop_failback, params)
  req.send_request(options)
end