Learn R Programming

paws.database (version 0.1.12)

rds_describe_installation_media: Describes the available installation media for a DB engine that requires an on-premises customer provided license, such as Microsoft SQL Server

Description

Describes the available installation media for a DB engine that requires an on-premises customer provided license, such as Microsoft SQL Server.

Usage

rds_describe_installation_media(InstallationMediaId, Filters,
  MaxRecords, Marker)

Value

A list with the following syntax:

list(
  Marker = "string",
  InstallationMedia = list(
    list(
      InstallationMediaId = "string",
      CustomAvailabilityZoneId = "string",
      Engine = "string",
      EngineVersion = "string",
      EngineInstallationMediaPath = "string",
      OSInstallationMediaPath = "string",
      Status = "string",
      FailureCause = list(
        Message = "string"
      )
    )
  )
)

Arguments

InstallationMediaId

The installation medium ID.

Filters

A filter that specifies one or more installation media to describe. Supported filters include the following:

  • custom-availability-zone-id - Accepts custom Availability Zone (AZ) identifiers. The results list includes information about only the custom AZs identified by these identifiers.

  • engine - Accepts database engines. The results list includes information about only the database engines identified by these identifiers.

    For more information about the valid engines for installation media, see import_installation_media.

MaxRecords

An optional pagination token provided by a previous DescribeInstallationMedia request. If this parameter is specified, the response includes only records beyond the marker, up to the value specified by MaxRecords.

Marker

An optional pagination token provided by a previous request. If this parameter is specified, the response includes only records beyond the marker, up to the value specified by MaxRecords.

Request syntax

svc$describe_installation_media(
  InstallationMediaId = "string",
  Filters = list(
    list(
      Name = "string",
      Values = list(
        "string"
      )
    )
  ),
  MaxRecords = 123,
  Marker = "string"
)