aws-cdk-lib.aws_acmpca.CfnCertificate.CustomExtensionProperty

interface CustomExtensionProperty

LanguageType name
.NETAmazon.CDK.AWS.ACMPCA.CfnCertificate.CustomExtensionProperty
Gogithub.com/aws/aws-cdk-go/awscdk/v2/awsacmpca#CfnCertificate_CustomExtensionProperty
Javasoftware.amazon.awscdk.services.acmpca.CfnCertificate.CustomExtensionProperty
Pythonaws_cdk.aws_acmpca.CfnCertificate.CustomExtensionProperty
TypeScript aws-cdk-lib » aws_acmpca » CfnCertificate » CustomExtensionProperty

Specifies the X.509 extension information for a certificate.

Extensions present in CustomExtensions follow the ApiPassthrough template rules .

Example

// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { aws_acmpca as acmpca } from 'aws-cdk-lib';
const customExtensionProperty: acmpca.CfnCertificate.CustomExtensionProperty = {
  objectIdentifier: 'objectIdentifier',
  value: 'value',

  // the properties below are optional
  critical: false,
};

Properties

NameTypeDescription
objectIdentifierstringSpecifies the object identifier (OID) of the X.509 extension. For more information, see the Global OID reference database..
valuestringSpecifies the base64-encoded value of the X.509 extension.
critical?boolean | IResolvableSpecifies the critical flag of the X.509 extension.

objectIdentifier

Type: string

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


value

Type: string

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


critical?

Type: boolean | IResolvable (optional)

Specifies the critical flag of the X.509 extension.