libZSservicesZSamazonka-rdsZSamazonka-rds
Copyright(c) 2013-2021 Brendan Hay
LicenseMozilla Public License, v. 2.0.
MaintainerBrendan Hay <brendan.g.hay+amazonka@gmail.com>
Stabilityauto-generated
Portabilitynon-portable (GHC extensions)
Safe HaskellNone

Amazonka.RDS.DescribeInstallationMedia

Description

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

This operation returns paginated results.

Synopsis

Creating a Request

data DescribeInstallationMedia Source #

See: newDescribeInstallationMedia smart constructor.

Constructors

DescribeInstallationMedia' 

Fields

  • installationMediaId :: Maybe Text

    The installation medium ID.

  • filters :: Maybe [Filter]

    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 ImportInstallationMedia.

  • marker :: Maybe Text

    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.

  • maxRecords :: Maybe Int

    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.

Instances

Instances details
Eq DescribeInstallationMedia Source # 
Instance details

Defined in Amazonka.RDS.DescribeInstallationMedia

Read DescribeInstallationMedia Source # 
Instance details

Defined in Amazonka.RDS.DescribeInstallationMedia

Show DescribeInstallationMedia Source # 
Instance details

Defined in Amazonka.RDS.DescribeInstallationMedia

Generic DescribeInstallationMedia Source # 
Instance details

Defined in Amazonka.RDS.DescribeInstallationMedia

Associated Types

type Rep DescribeInstallationMedia :: Type -> Type #

NFData DescribeInstallationMedia Source # 
Instance details

Defined in Amazonka.RDS.DescribeInstallationMedia

Hashable DescribeInstallationMedia Source # 
Instance details

Defined in Amazonka.RDS.DescribeInstallationMedia

AWSPager DescribeInstallationMedia Source # 
Instance details

Defined in Amazonka.RDS.DescribeInstallationMedia

AWSRequest DescribeInstallationMedia Source # 
Instance details

Defined in Amazonka.RDS.DescribeInstallationMedia

ToHeaders DescribeInstallationMedia Source # 
Instance details

Defined in Amazonka.RDS.DescribeInstallationMedia

ToPath DescribeInstallationMedia Source # 
Instance details

Defined in Amazonka.RDS.DescribeInstallationMedia

ToQuery DescribeInstallationMedia Source # 
Instance details

Defined in Amazonka.RDS.DescribeInstallationMedia

type Rep DescribeInstallationMedia Source # 
Instance details

Defined in Amazonka.RDS.DescribeInstallationMedia

type Rep DescribeInstallationMedia = D1 ('MetaData "DescribeInstallationMedia" "Amazonka.RDS.DescribeInstallationMedia" "libZSservicesZSamazonka-rdsZSamazonka-rds" 'False) (C1 ('MetaCons "DescribeInstallationMedia'" 'PrefixI 'True) ((S1 ('MetaSel ('Just "installationMediaId") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe Text)) :*: S1 ('MetaSel ('Just "filters") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe [Filter]))) :*: (S1 ('MetaSel ('Just "marker") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe Text)) :*: S1 ('MetaSel ('Just "maxRecords") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe Int)))))
type AWSResponse DescribeInstallationMedia Source # 
Instance details

Defined in Amazonka.RDS.DescribeInstallationMedia

newDescribeInstallationMedia :: DescribeInstallationMedia Source #

Create a value of DescribeInstallationMedia with all optional fields omitted.

Use generic-lens or optics to modify other optional fields.

The following record fields are available, with the corresponding lenses provided for backwards compatibility:

$sel:installationMediaId:DescribeInstallationMedia', describeInstallationMedia_installationMediaId - The installation medium ID.

$sel:filters:DescribeInstallationMedia', describeInstallationMedia_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 ImportInstallationMedia.

$sel:marker:DescribeInstallationMedia', describeInstallationMedia_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.

$sel:maxRecords:DescribeInstallationMedia', describeInstallationMedia_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.

Request Lenses

describeInstallationMedia_filters :: Lens' DescribeInstallationMedia (Maybe [Filter]) Source #

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 ImportInstallationMedia.

describeInstallationMedia_marker :: Lens' DescribeInstallationMedia (Maybe Text) Source #

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.

describeInstallationMedia_maxRecords :: Lens' DescribeInstallationMedia (Maybe Int) Source #

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.

Destructuring the Response

data DescribeInstallationMediaResponse Source #

See: newDescribeInstallationMediaResponse smart constructor.

Constructors

DescribeInstallationMediaResponse' 

Fields

  • marker :: Maybe Text

    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.

  • installationMedia :: Maybe [InstallationMedia]

    The list of InstallationMedia objects for the Amazon Web Services account.

  • httpStatus :: Int

    The response's http status code.

Instances

Instances details
Eq DescribeInstallationMediaResponse Source # 
Instance details

Defined in Amazonka.RDS.DescribeInstallationMedia

Read DescribeInstallationMediaResponse Source # 
Instance details

Defined in Amazonka.RDS.DescribeInstallationMedia

Show DescribeInstallationMediaResponse Source # 
Instance details

Defined in Amazonka.RDS.DescribeInstallationMedia

Generic DescribeInstallationMediaResponse Source # 
Instance details

Defined in Amazonka.RDS.DescribeInstallationMedia

Associated Types

type Rep DescribeInstallationMediaResponse :: Type -> Type #

NFData DescribeInstallationMediaResponse Source # 
Instance details

Defined in Amazonka.RDS.DescribeInstallationMedia

type Rep DescribeInstallationMediaResponse Source # 
Instance details

Defined in Amazonka.RDS.DescribeInstallationMedia

type Rep DescribeInstallationMediaResponse = D1 ('MetaData "DescribeInstallationMediaResponse" "Amazonka.RDS.DescribeInstallationMedia" "libZSservicesZSamazonka-rdsZSamazonka-rds" 'False) (C1 ('MetaCons "DescribeInstallationMediaResponse'" 'PrefixI 'True) (S1 ('MetaSel ('Just "marker") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe Text)) :*: (S1 ('MetaSel ('Just "installationMedia") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe [InstallationMedia])) :*: S1 ('MetaSel ('Just "httpStatus") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 Int))))

newDescribeInstallationMediaResponse Source #

Create a value of DescribeInstallationMediaResponse with all optional fields omitted.

Use generic-lens or optics to modify other optional fields.

The following record fields are available, with the corresponding lenses provided for backwards compatibility:

$sel:marker:DescribeInstallationMedia', describeInstallationMediaResponse_marker - 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.

$sel:installationMedia:DescribeInstallationMediaResponse', describeInstallationMediaResponse_installationMedia - The list of InstallationMedia objects for the Amazon Web Services account.

$sel:httpStatus:DescribeInstallationMediaResponse', describeInstallationMediaResponse_httpStatus - The response's http status code.

Response Lenses

describeInstallationMediaResponse_marker :: Lens' DescribeInstallationMediaResponse (Maybe Text) Source #

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.

describeInstallationMediaResponse_installationMedia :: Lens' DescribeInstallationMediaResponse (Maybe [InstallationMedia]) Source #

The list of InstallationMedia objects for the Amazon Web Services account.