Learn R Programming

paws.database (version 0.1.12)

rds_create_custom_availability_zone: Creates a custom Availability Zone (AZ)

Description

Creates a custom Availability Zone (AZ).

A custom AZ is an on-premises AZ that is integrated with a VMware vSphere cluster.

For more information about RDS on VMware, see the RDS on VMware User Guide.

Usage

rds_create_custom_availability_zone(CustomAvailabilityZoneName,
  ExistingVpnId, NewVpnTunnelName, VpnTunnelOriginatorIP)

Value

A list with the following syntax:

list(
  CustomAvailabilityZone = list(
    CustomAvailabilityZoneId = "string",
    CustomAvailabilityZoneName = "string",
    CustomAvailabilityZoneStatus = "string",
    VpnDetails = list(
      VpnId = "string",
      VpnTunnelOriginatorIP = "string",
      VpnGatewayIp = "string",
      VpnPSK = "string",
      VpnName = "string",
      VpnState = "string"
    )
  )
)

Arguments

CustomAvailabilityZoneName

[required] The name of the custom Availability Zone (AZ).

ExistingVpnId

The ID of an existing virtual private network (VPN) between the Amazon RDS website and the VMware vSphere cluster.

NewVpnTunnelName

The name of a new VPN tunnel between the Amazon RDS website and the VMware vSphere cluster.

Specify this parameter only if ExistingVpnId isn't specified.

VpnTunnelOriginatorIP

The IP address of network traffic from your on-premises data center. A custom AZ receives the network traffic.

Specify this parameter only if ExistingVpnId isn't specified.

Request syntax

svc$create_custom_availability_zone(
  CustomAvailabilityZoneName = "string",
  ExistingVpnId = "string",
  NewVpnTunnelName = "string",
  VpnTunnelOriginatorIP = "string"
)