Method: Aws::Drs::Client#update_failback_replication_configuration

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

#update_failback_replication_configuration(params = {}) ⇒ Struct

Allows you to update the failback replication configuration of a Recovery Instance by ID.

Examples:

Request syntax with placeholder values


resp = client.update_failback_replication_configuration({
  bandwidth_throttling: 1,
  name: "BoundedString",
  recovery_instance_id: "RecoveryInstanceID", # required
  use_private_ip: false,
})

Parameters:

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

    ({})

Options Hash (params):

  • :bandwidth_throttling (Integer)

    Configure bandwidth throttling for the outbound data transfer rate of the Recovery Instance in Mbps.

  • :name (String)

    The name of the Failback Replication Configuration.

  • :recovery_instance_id (required, String)

    The ID of the Recovery Instance.

  • :use_private_ip (Boolean)

    Whether to use Private IP for the failback replication of the Recovery Instance.

Returns:

  • (Struct)

    Returns an empty response.

See Also:



3078
3079
3080
3081
# File 'lib/aws-sdk-drs/client.rb', line 3078

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