amazonka-certificatemanager-pca-2.0: Amazon Certificate Manager Private Certificate Authority 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.CertificateManagerPCA.Types.CustomExtension

Description

 
Synopsis

Documentation

data CustomExtension Source #

Specifies the X.509 extension information for a certificate.

Extensions present in CustomExtensions follow the ApiPassthrough template rules.

See: newCustomExtension smart constructor.

Constructors

CustomExtension' 

Fields

Instances

Instances details
ToJSON CustomExtension Source # 
Instance details

Defined in Amazonka.CertificateManagerPCA.Types.CustomExtension

Generic CustomExtension Source # 
Instance details

Defined in Amazonka.CertificateManagerPCA.Types.CustomExtension

Associated Types

type Rep CustomExtension :: Type -> Type #

Read CustomExtension Source # 
Instance details

Defined in Amazonka.CertificateManagerPCA.Types.CustomExtension

Show CustomExtension Source # 
Instance details

Defined in Amazonka.CertificateManagerPCA.Types.CustomExtension

NFData CustomExtension Source # 
Instance details

Defined in Amazonka.CertificateManagerPCA.Types.CustomExtension

Methods

rnf :: CustomExtension -> () #

Eq CustomExtension Source # 
Instance details

Defined in Amazonka.CertificateManagerPCA.Types.CustomExtension

Hashable CustomExtension Source # 
Instance details

Defined in Amazonka.CertificateManagerPCA.Types.CustomExtension

type Rep CustomExtension Source # 
Instance details

Defined in Amazonka.CertificateManagerPCA.Types.CustomExtension

type Rep CustomExtension = D1 ('MetaData "CustomExtension" "Amazonka.CertificateManagerPCA.Types.CustomExtension" "amazonka-certificatemanager-pca-2.0-BrCc8DEClV63rMSVXz2XYH" 'False) (C1 ('MetaCons "CustomExtension'" 'PrefixI 'True) (S1 ('MetaSel ('Just "critical") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe Bool)) :*: (S1 ('MetaSel ('Just "objectIdentifier") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 Text) :*: S1 ('MetaSel ('Just "value") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 Text))))

newCustomExtension Source #

Create a value of CustomExtension 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:critical:CustomExtension', customExtension_critical - Specifies the critical flag of the X.509 extension.

$sel:objectIdentifier:CustomExtension', customExtension_objectIdentifier - Specifies the object identifier (OID) of the X.509 extension. For more information, see the Global OID reference database.

$sel:value:CustomExtension', customExtension_value - Specifies the base64-encoded value of the X.509 extension.

customExtension_critical :: Lens' CustomExtension (Maybe Bool) Source #

Specifies the critical flag of the X.509 extension.

customExtension_objectIdentifier :: Lens' CustomExtension Text Source #

Specifies the object identifier (OID) of the X.509 extension. For more information, see the Global OID reference database.

customExtension_value :: Lens' CustomExtension Text Source #

Specifies the base64-encoded value of the X.509 extension.