amazonka-redshift-2.0: Amazon Redshift SDK.
Copyright(c) 2013-2023 Brendan Hay
LicenseMozilla Public License, v. 2.0.
MaintainerBrendan Hay
Stabilityauto-generated
Portabilitynon-portable (GHC extensions)
Safe HaskellSafe-Inferred
LanguageHaskell2010

Amazonka.Redshift.DescribePartners

Description

Returns information about the partner integrations defined for a cluster.

Synopsis

Creating a Request

data DescribePartners Source #

See: newDescribePartners smart constructor.

Constructors

DescribePartners' 

Fields

  • databaseName :: Maybe Text

    The name of the database whose partner integration is being described. If database name is not specified, then all databases in the cluster are described.

  • partnerName :: Maybe Text

    The name of the partner that is being described. If partner name is not specified, then all partner integrations are described.

  • accountId :: Text

    The Amazon Web Services account ID that owns the cluster.

  • clusterIdentifier :: Text

    The cluster identifier of the cluster whose partner integration is being described.

Instances

Instances details
ToHeaders DescribePartners Source # 
Instance details

Defined in Amazonka.Redshift.DescribePartners

ToPath DescribePartners Source # 
Instance details

Defined in Amazonka.Redshift.DescribePartners

ToQuery DescribePartners Source # 
Instance details

Defined in Amazonka.Redshift.DescribePartners

AWSRequest DescribePartners Source # 
Instance details

Defined in Amazonka.Redshift.DescribePartners

Associated Types

type AWSResponse DescribePartners #

Generic DescribePartners Source # 
Instance details

Defined in Amazonka.Redshift.DescribePartners

Associated Types

type Rep DescribePartners :: Type -> Type #

Read DescribePartners Source # 
Instance details

Defined in Amazonka.Redshift.DescribePartners

Show DescribePartners Source # 
Instance details

Defined in Amazonka.Redshift.DescribePartners

NFData DescribePartners Source # 
Instance details

Defined in Amazonka.Redshift.DescribePartners

Methods

rnf :: DescribePartners -> () #

Eq DescribePartners Source # 
Instance details

Defined in Amazonka.Redshift.DescribePartners

Hashable DescribePartners Source # 
Instance details

Defined in Amazonka.Redshift.DescribePartners

type AWSResponse DescribePartners Source # 
Instance details

Defined in Amazonka.Redshift.DescribePartners

type Rep DescribePartners Source # 
Instance details

Defined in Amazonka.Redshift.DescribePartners

type Rep DescribePartners = D1 ('MetaData "DescribePartners" "Amazonka.Redshift.DescribePartners" "amazonka-redshift-2.0-4tocKxBWIuj2GdXa6djdUl" 'False) (C1 ('MetaCons "DescribePartners'" 'PrefixI 'True) ((S1 ('MetaSel ('Just "databaseName") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe Text)) :*: S1 ('MetaSel ('Just "partnerName") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe Text))) :*: (S1 ('MetaSel ('Just "accountId") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 Text) :*: S1 ('MetaSel ('Just "clusterIdentifier") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 Text))))

newDescribePartners Source #

Create a value of DescribePartners 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:

DescribePartners, describePartners_databaseName - The name of the database whose partner integration is being described. If database name is not specified, then all databases in the cluster are described.

DescribePartners, describePartners_partnerName - The name of the partner that is being described. If partner name is not specified, then all partner integrations are described.

DescribePartners, describePartners_accountId - The Amazon Web Services account ID that owns the cluster.

DescribePartners, describePartners_clusterIdentifier - The cluster identifier of the cluster whose partner integration is being described.

Request Lenses

describePartners_databaseName :: Lens' DescribePartners (Maybe Text) Source #

The name of the database whose partner integration is being described. If database name is not specified, then all databases in the cluster are described.

describePartners_partnerName :: Lens' DescribePartners (Maybe Text) Source #

The name of the partner that is being described. If partner name is not specified, then all partner integrations are described.

describePartners_accountId :: Lens' DescribePartners Text Source #

The Amazon Web Services account ID that owns the cluster.

describePartners_clusterIdentifier :: Lens' DescribePartners Text Source #

The cluster identifier of the cluster whose partner integration is being described.

Destructuring the Response

data DescribePartnersResponse Source #

See: newDescribePartnersResponse smart constructor.

Constructors

DescribePartnersResponse' 

Fields

Instances

Instances details
Generic DescribePartnersResponse Source # 
Instance details

Defined in Amazonka.Redshift.DescribePartners

Associated Types

type Rep DescribePartnersResponse :: Type -> Type #

Read DescribePartnersResponse Source # 
Instance details

Defined in Amazonka.Redshift.DescribePartners

Show DescribePartnersResponse Source # 
Instance details

Defined in Amazonka.Redshift.DescribePartners

NFData DescribePartnersResponse Source # 
Instance details

Defined in Amazonka.Redshift.DescribePartners

Eq DescribePartnersResponse Source # 
Instance details

Defined in Amazonka.Redshift.DescribePartners

type Rep DescribePartnersResponse Source # 
Instance details

Defined in Amazonka.Redshift.DescribePartners

type Rep DescribePartnersResponse = D1 ('MetaData "DescribePartnersResponse" "Amazonka.Redshift.DescribePartners" "amazonka-redshift-2.0-4tocKxBWIuj2GdXa6djdUl" 'False) (C1 ('MetaCons "DescribePartnersResponse'" 'PrefixI 'True) (S1 ('MetaSel ('Just "partnerIntegrationInfoList") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe [PartnerIntegrationInfo])) :*: S1 ('MetaSel ('Just "httpStatus") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 Int)))

newDescribePartnersResponse Source #

Create a value of DescribePartnersResponse 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:partnerIntegrationInfoList:DescribePartnersResponse', describePartnersResponse_partnerIntegrationInfoList - A list of partner integrations.

$sel:httpStatus:DescribePartnersResponse', describePartnersResponse_httpStatus - The response's http status code.

Response Lenses