Skip to content

Disable Instance Sql Ha Standby Detections

ec2_disable_instance_sql_ha_standby_detections R Documentation

Disable Amazon EC2 instances running in an SQL Server High Availability cluster from SQL Server High Availability instance standby detection monitoring

Description

Disable Amazon EC2 instances running in an SQL Server High Availability cluster from SQL Server High Availability instance standby detection monitoring. Once disabled, Amazon Web Services no longer monitors the metadata for the instances to determine whether they are active or standby nodes in the SQL Server High Availability cluster.

Usage

ec2_disable_instance_sql_ha_standby_detections(InstanceIds, DryRun)

Arguments

InstanceIds

[required] The IDs of the instances to disable from SQL Server High Availability standby detection monitoring.

DryRun

Checks whether you have the required permissions for the action, without actually making the request, and provides an error response. If you have the required permissions, the error response is DryRunOperation. Otherwise, it is UnauthorizedOperation.

Value

A list with the following syntax:

list(
  Instances = list(
    list(
      InstanceId = "string",
      SqlServerLicenseUsage = "full"|"waived",
      HaStatus = "processing"|"active"|"standby"|"invalid",
      ProcessingStatus = "string",
      LastUpdatedTime = as.POSIXct(
        "2015-01-01"
      ),
      SqlServerCredentials = "string",
      Tags = list(
        list(
          Key = "string",
          Value = "string"
        )
      )
    )
  )
)

Request syntax

svc$disable_instance_sql_ha_standby_detections(
  InstanceIds = list(
    "string"
  ),
  DryRun = TRUE|FALSE
)