amazonka-rolesanywhere-2.0: Amazon IAM Roles Anywhere 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.RolesAnywhere.UpdateCrl

Description

Updates the certificate revocation list (CRL). CRl is a list of certificates that have been revoked by the issuing certificate Authority (CA). IAM Roles Anywhere validates against the crl list before issuing credentials.

Required permissions: rolesanywhere:UpdateCrl.

Synopsis

Creating a Request

data UpdateCrl Source #

See: newUpdateCrl smart constructor.

Constructors

UpdateCrl' 

Fields

Instances

Instances details
ToJSON UpdateCrl Source # 
Instance details

Defined in Amazonka.RolesAnywhere.UpdateCrl

ToHeaders UpdateCrl Source # 
Instance details

Defined in Amazonka.RolesAnywhere.UpdateCrl

Methods

toHeaders :: UpdateCrl -> [Header] #

ToPath UpdateCrl Source # 
Instance details

Defined in Amazonka.RolesAnywhere.UpdateCrl

ToQuery UpdateCrl Source # 
Instance details

Defined in Amazonka.RolesAnywhere.UpdateCrl

AWSRequest UpdateCrl Source # 
Instance details

Defined in Amazonka.RolesAnywhere.UpdateCrl

Associated Types

type AWSResponse UpdateCrl #

Generic UpdateCrl Source # 
Instance details

Defined in Amazonka.RolesAnywhere.UpdateCrl

Associated Types

type Rep UpdateCrl :: Type -> Type #

Read UpdateCrl Source # 
Instance details

Defined in Amazonka.RolesAnywhere.UpdateCrl

Show UpdateCrl Source # 
Instance details

Defined in Amazonka.RolesAnywhere.UpdateCrl

NFData UpdateCrl Source # 
Instance details

Defined in Amazonka.RolesAnywhere.UpdateCrl

Methods

rnf :: UpdateCrl -> () #

Eq UpdateCrl Source # 
Instance details

Defined in Amazonka.RolesAnywhere.UpdateCrl

Hashable UpdateCrl Source # 
Instance details

Defined in Amazonka.RolesAnywhere.UpdateCrl

type AWSResponse UpdateCrl Source # 
Instance details

Defined in Amazonka.RolesAnywhere.UpdateCrl

type Rep UpdateCrl Source # 
Instance details

Defined in Amazonka.RolesAnywhere.UpdateCrl

type Rep UpdateCrl = D1 ('MetaData "UpdateCrl" "Amazonka.RolesAnywhere.UpdateCrl" "amazonka-rolesanywhere-2.0-7BPe9kXny717lI0izhhqXT" 'False) (C1 ('MetaCons "UpdateCrl'" 'PrefixI 'True) (S1 ('MetaSel ('Just "crlData") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe Base64)) :*: (S1 ('MetaSel ('Just "name") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe Text)) :*: S1 ('MetaSel ('Just "crlId") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 Text))))

newUpdateCrl Source #

Arguments

:: Text

UpdateCrl

-> UpdateCrl 

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

UpdateCrl, updateCrl_crlData - The x509 v3 specified certificate revocation list-- -- Note: This Lens automatically encodes and decodes Base64 data. -- The underlying isomorphism will encode to Base64 representation during -- serialisation, and decode from Base64 representation during deserialisation. -- This Lens accepts and returns only raw unencoded data.

UpdateCrl, updateCrl_name - The name of the Crl.

UpdateCrl, updateCrl_crlId - The unique identifier of the certificate revocation list (CRL).

Request Lenses

updateCrl_crlData :: Lens' UpdateCrl (Maybe ByteString) Source #

The x509 v3 specified certificate revocation list-- -- Note: This Lens automatically encodes and decodes Base64 data. -- The underlying isomorphism will encode to Base64 representation during -- serialisation, and decode from Base64 representation during deserialisation. -- This Lens accepts and returns only raw unencoded data.

updateCrl_name :: Lens' UpdateCrl (Maybe Text) Source #

The name of the Crl.

updateCrl_crlId :: Lens' UpdateCrl Text Source #

The unique identifier of the certificate revocation list (CRL).

Destructuring the Response

data CrlDetailResponse Source #

See: newCrlDetailResponse smart constructor.

Constructors

CrlDetailResponse' 

Fields

  • crl :: CrlDetail

    The state of the certificate revocation list (CRL) after a read or write operation.

Instances

Instances details
FromJSON CrlDetailResponse Source # 
Instance details

Defined in Amazonka.RolesAnywhere.Types.CrlDetailResponse

Generic CrlDetailResponse Source # 
Instance details

Defined in Amazonka.RolesAnywhere.Types.CrlDetailResponse

Associated Types

type Rep CrlDetailResponse :: Type -> Type #

Read CrlDetailResponse Source # 
Instance details

Defined in Amazonka.RolesAnywhere.Types.CrlDetailResponse

Show CrlDetailResponse Source # 
Instance details

Defined in Amazonka.RolesAnywhere.Types.CrlDetailResponse

NFData CrlDetailResponse Source # 
Instance details

Defined in Amazonka.RolesAnywhere.Types.CrlDetailResponse

Methods

rnf :: CrlDetailResponse -> () #

Eq CrlDetailResponse Source # 
Instance details

Defined in Amazonka.RolesAnywhere.Types.CrlDetailResponse

Hashable CrlDetailResponse Source # 
Instance details

Defined in Amazonka.RolesAnywhere.Types.CrlDetailResponse

type Rep CrlDetailResponse Source # 
Instance details

Defined in Amazonka.RolesAnywhere.Types.CrlDetailResponse

type Rep CrlDetailResponse = D1 ('MetaData "CrlDetailResponse" "Amazonka.RolesAnywhere.Types.CrlDetailResponse" "amazonka-rolesanywhere-2.0-7BPe9kXny717lI0izhhqXT" 'False) (C1 ('MetaCons "CrlDetailResponse'" 'PrefixI 'True) (S1 ('MetaSel ('Just "crl") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 CrlDetail)))

newCrlDetailResponse Source #

Create a value of CrlDetailResponse 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:crl:CrlDetailResponse', crlDetailResponse_crl - The state of the certificate revocation list (CRL) after a read or write operation.

Response Lenses

crlDetailResponse_crl :: Lens' CrlDetailResponse CrlDetail Source #

The state of the certificate revocation list (CRL) after a read or write operation.