interface CustomExtensionProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.ACMPCA.Mixins.CfnCertificatePropsMixin.CustomExtensionProperty |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awsacmpca/mixins#CfnCertificatePropsMixin_CustomExtensionProperty |
Java | software.amazon.awscdk.mixins.preview.services.acmpca.mixins.CfnCertificatePropsMixin.CustomExtensionProperty |
Python | aws_cdk.mixins_preview.aws_acmpca.mixins.CfnCertificatePropsMixin.CustomExtensionProperty |
TypeScript | @aws-cdk/mixins-preview » aws_acmpca » mixins » CfnCertificatePropsMixin » 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 { mixins as acmpca_mixins } from '@aws-cdk/mixins-preview/aws-acmpca';
const customExtensionProperty: acmpca_mixins.CfnCertificatePropsMixin.CustomExtensionProperty = {
critical: false,
objectIdentifier: 'objectIdentifier',
value: 'value',
};
Properties
| Name | Type | Description |
|---|---|---|
| critical? | boolean | IResolvable | Specifies the critical flag of the X.509 extension. |
| object | string | Specifies the object identifier (OID) of the X.509 extension. For more information, see the Global OID reference database.. |
| value? | 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.
objectIdentifier?
Type:
string
(optional)
Specifies the object identifier (OID) of the X.509 extension. For more information, see the Global OID reference database..
value?
Type:
string
(optional)
Specifies the base64-encoded value of the X.509 extension.

.NET
Go
Java
Python
TypeScript