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

Description

Returns a list of DBParameterGroup descriptions. If a DBParameterGroupName is specified, the list will contain only the description of the specified DB parameter group.

This operation returns paginated results.

Synopsis

Creating a Request

data DescribeDBParameterGroups Source #

See: newDescribeDBParameterGroups smart constructor.

Constructors

DescribeDBParameterGroups' 

Fields

  • filters :: Maybe [Filter]

    This parameter isn't currently supported.

  • dbParameterGroupName :: Maybe Text

    The name of a specific DB parameter group to return details for.

    Constraints:

    • If supplied, must match the name of an existing DBClusterParameterGroup.
  • marker :: Maybe Text

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

  • maxRecords :: Maybe Int

    The maximum number of records to include in the response. If more records exist than the specified MaxRecords value, a pagination token called a marker is included in the response so that you can retrieve the remaining results.

    Default: 100

    Constraints: Minimum 20, maximum 100.

Instances

Instances details
Eq DescribeDBParameterGroups Source # 
Instance details

Defined in Amazonka.RDS.DescribeDBParameterGroups

Read DescribeDBParameterGroups Source # 
Instance details

Defined in Amazonka.RDS.DescribeDBParameterGroups

Show DescribeDBParameterGroups Source # 
Instance details

Defined in Amazonka.RDS.DescribeDBParameterGroups

Generic DescribeDBParameterGroups Source # 
Instance details

Defined in Amazonka.RDS.DescribeDBParameterGroups

Associated Types

type Rep DescribeDBParameterGroups :: Type -> Type #

NFData DescribeDBParameterGroups Source # 
Instance details

Defined in Amazonka.RDS.DescribeDBParameterGroups

Hashable DescribeDBParameterGroups Source # 
Instance details

Defined in Amazonka.RDS.DescribeDBParameterGroups

AWSPager DescribeDBParameterGroups Source # 
Instance details

Defined in Amazonka.RDS.DescribeDBParameterGroups

AWSRequest DescribeDBParameterGroups Source # 
Instance details

Defined in Amazonka.RDS.DescribeDBParameterGroups

ToHeaders DescribeDBParameterGroups Source # 
Instance details

Defined in Amazonka.RDS.DescribeDBParameterGroups

ToPath DescribeDBParameterGroups Source # 
Instance details

Defined in Amazonka.RDS.DescribeDBParameterGroups

ToQuery DescribeDBParameterGroups Source # 
Instance details

Defined in Amazonka.RDS.DescribeDBParameterGroups

type Rep DescribeDBParameterGroups Source # 
Instance details

Defined in Amazonka.RDS.DescribeDBParameterGroups

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

Defined in Amazonka.RDS.DescribeDBParameterGroups

newDescribeDBParameterGroups :: DescribeDBParameterGroups Source #

Create a value of DescribeDBParameterGroups 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:filters:DescribeDBParameterGroups', describeDBParameterGroups_filters - This parameter isn't currently supported.

$sel:dbParameterGroupName:DescribeDBParameterGroups', describeDBParameterGroups_dbParameterGroupName - The name of a specific DB parameter group to return details for.

Constraints:

  • If supplied, must match the name of an existing DBClusterParameterGroup.

$sel:marker:DescribeDBParameterGroups', describeDBParameterGroups_marker - An optional pagination token provided by a previous DescribeDBParameterGroups request. If this parameter is specified, the response includes only records beyond the marker, up to the value specified by MaxRecords.

$sel:maxRecords:DescribeDBParameterGroups', describeDBParameterGroups_maxRecords - The maximum number of records to include in the response. If more records exist than the specified MaxRecords value, a pagination token called a marker is included in the response so that you can retrieve the remaining results.

Default: 100

Constraints: Minimum 20, maximum 100.

Request Lenses

describeDBParameterGroups_filters :: Lens' DescribeDBParameterGroups (Maybe [Filter]) Source #

This parameter isn't currently supported.

describeDBParameterGroups_dbParameterGroupName :: Lens' DescribeDBParameterGroups (Maybe Text) Source #

The name of a specific DB parameter group to return details for.

Constraints:

  • If supplied, must match the name of an existing DBClusterParameterGroup.

describeDBParameterGroups_marker :: Lens' DescribeDBParameterGroups (Maybe Text) Source #

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

describeDBParameterGroups_maxRecords :: Lens' DescribeDBParameterGroups (Maybe Int) Source #

The maximum number of records to include in the response. If more records exist than the specified MaxRecords value, a pagination token called a marker is included in the response so that you can retrieve the remaining results.

Default: 100

Constraints: Minimum 20, maximum 100.

Destructuring the Response

data DescribeDBParameterGroupsResponse Source #

Contains the result of a successful invocation of the DescribeDBParameterGroups action.

See: newDescribeDBParameterGroupsResponse smart constructor.

Constructors

DescribeDBParameterGroupsResponse' 

Fields

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

  • dbParameterGroups :: Maybe [DBParameterGroup]

    A list of DBParameterGroup instances.

  • httpStatus :: Int

    The response's http status code.

Instances

Instances details
Eq DescribeDBParameterGroupsResponse Source # 
Instance details

Defined in Amazonka.RDS.DescribeDBParameterGroups

Read DescribeDBParameterGroupsResponse Source # 
Instance details

Defined in Amazonka.RDS.DescribeDBParameterGroups

Show DescribeDBParameterGroupsResponse Source # 
Instance details

Defined in Amazonka.RDS.DescribeDBParameterGroups

Generic DescribeDBParameterGroupsResponse Source # 
Instance details

Defined in Amazonka.RDS.DescribeDBParameterGroups

Associated Types

type Rep DescribeDBParameterGroupsResponse :: Type -> Type #

NFData DescribeDBParameterGroupsResponse Source # 
Instance details

Defined in Amazonka.RDS.DescribeDBParameterGroups

type Rep DescribeDBParameterGroupsResponse Source # 
Instance details

Defined in Amazonka.RDS.DescribeDBParameterGroups

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

newDescribeDBParameterGroupsResponse Source #

Create a value of DescribeDBParameterGroupsResponse 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:DescribeDBParameterGroups', describeDBParameterGroupsResponse_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:dbParameterGroups:DescribeDBParameterGroupsResponse', describeDBParameterGroupsResponse_dbParameterGroups - A list of DBParameterGroup instances.

$sel:httpStatus:DescribeDBParameterGroupsResponse', describeDBParameterGroupsResponse_httpStatus - The response's http status code.

Response Lenses

describeDBParameterGroupsResponse_marker :: Lens' DescribeDBParameterGroupsResponse (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.