amazonka-iot-2.0: Amazon IoT 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.IoT.ListOutgoingCertificates

Description

Lists certificates that are being transferred but not yet accepted.

Requires permission to access the ListOutgoingCertificates action.

This operation returns paginated results.

Synopsis

Creating a Request

data ListOutgoingCertificates Source #

The input to the ListOutgoingCertificates operation.

See: newListOutgoingCertificates smart constructor.

Constructors

ListOutgoingCertificates' 

Fields

Instances

Instances details
ToHeaders ListOutgoingCertificates Source # 
Instance details

Defined in Amazonka.IoT.ListOutgoingCertificates

ToPath ListOutgoingCertificates Source # 
Instance details

Defined in Amazonka.IoT.ListOutgoingCertificates

ToQuery ListOutgoingCertificates Source # 
Instance details

Defined in Amazonka.IoT.ListOutgoingCertificates

AWSPager ListOutgoingCertificates Source # 
Instance details

Defined in Amazonka.IoT.ListOutgoingCertificates

AWSRequest ListOutgoingCertificates Source # 
Instance details

Defined in Amazonka.IoT.ListOutgoingCertificates

Generic ListOutgoingCertificates Source # 
Instance details

Defined in Amazonka.IoT.ListOutgoingCertificates

Associated Types

type Rep ListOutgoingCertificates :: Type -> Type #

Read ListOutgoingCertificates Source # 
Instance details

Defined in Amazonka.IoT.ListOutgoingCertificates

Show ListOutgoingCertificates Source # 
Instance details

Defined in Amazonka.IoT.ListOutgoingCertificates

NFData ListOutgoingCertificates Source # 
Instance details

Defined in Amazonka.IoT.ListOutgoingCertificates

Eq ListOutgoingCertificates Source # 
Instance details

Defined in Amazonka.IoT.ListOutgoingCertificates

Hashable ListOutgoingCertificates Source # 
Instance details

Defined in Amazonka.IoT.ListOutgoingCertificates

type AWSResponse ListOutgoingCertificates Source # 
Instance details

Defined in Amazonka.IoT.ListOutgoingCertificates

type Rep ListOutgoingCertificates Source # 
Instance details

Defined in Amazonka.IoT.ListOutgoingCertificates

type Rep ListOutgoingCertificates = D1 ('MetaData "ListOutgoingCertificates" "Amazonka.IoT.ListOutgoingCertificates" "amazonka-iot-2.0-6w03vgAfmrM1SG22OsNJXL" 'False) (C1 ('MetaCons "ListOutgoingCertificates'" 'PrefixI 'True) (S1 ('MetaSel ('Just "ascendingOrder") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe Bool)) :*: (S1 ('MetaSel ('Just "marker") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe Text)) :*: S1 ('MetaSel ('Just "pageSize") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe Natural)))))

newListOutgoingCertificates :: ListOutgoingCertificates Source #

Create a value of ListOutgoingCertificates 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:ascendingOrder:ListOutgoingCertificates', listOutgoingCertificates_ascendingOrder - Specifies the order for results. If True, the results are returned in ascending order, based on the creation date.

$sel:marker:ListOutgoingCertificates', listOutgoingCertificates_marker - The marker for the next set of results.

$sel:pageSize:ListOutgoingCertificates', listOutgoingCertificates_pageSize - The result page size.

Request Lenses

listOutgoingCertificates_ascendingOrder :: Lens' ListOutgoingCertificates (Maybe Bool) Source #

Specifies the order for results. If True, the results are returned in ascending order, based on the creation date.

Destructuring the Response

data ListOutgoingCertificatesResponse Source #

The output from the ListOutgoingCertificates operation.

See: newListOutgoingCertificatesResponse smart constructor.

Constructors

ListOutgoingCertificatesResponse' 

Fields

Instances

Instances details
Generic ListOutgoingCertificatesResponse Source # 
Instance details

Defined in Amazonka.IoT.ListOutgoingCertificates

Associated Types

type Rep ListOutgoingCertificatesResponse :: Type -> Type #

Read ListOutgoingCertificatesResponse Source # 
Instance details

Defined in Amazonka.IoT.ListOutgoingCertificates

Show ListOutgoingCertificatesResponse Source # 
Instance details

Defined in Amazonka.IoT.ListOutgoingCertificates

NFData ListOutgoingCertificatesResponse Source # 
Instance details

Defined in Amazonka.IoT.ListOutgoingCertificates

Eq ListOutgoingCertificatesResponse Source # 
Instance details

Defined in Amazonka.IoT.ListOutgoingCertificates

type Rep ListOutgoingCertificatesResponse Source # 
Instance details

Defined in Amazonka.IoT.ListOutgoingCertificates

type Rep ListOutgoingCertificatesResponse = D1 ('MetaData "ListOutgoingCertificatesResponse" "Amazonka.IoT.ListOutgoingCertificates" "amazonka-iot-2.0-6w03vgAfmrM1SG22OsNJXL" 'False) (C1 ('MetaCons "ListOutgoingCertificatesResponse'" 'PrefixI 'True) (S1 ('MetaSel ('Just "nextMarker") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe Text)) :*: (S1 ('MetaSel ('Just "outgoingCertificates") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe [OutgoingCertificate])) :*: S1 ('MetaSel ('Just "httpStatus") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 Int))))

newListOutgoingCertificatesResponse Source #

Create a value of ListOutgoingCertificatesResponse 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:nextMarker:ListOutgoingCertificatesResponse', listOutgoingCertificatesResponse_nextMarker - The marker for the next set of results.

$sel:outgoingCertificates:ListOutgoingCertificatesResponse', listOutgoingCertificatesResponse_outgoingCertificates - The certificates that are being transferred but not yet accepted.

$sel:httpStatus:ListOutgoingCertificatesResponse', listOutgoingCertificatesResponse_httpStatus - The response's http status code.

Response Lenses