interface CustomExtensionProperty
Language | Type name |
---|---|
.NET | Amazon.CDK.AWS.ACMPCA.CfnCertificate.CustomExtensionProperty |
Java | software.amazon.awscdk.services.acmpca.CfnCertificate.CustomExtensionProperty |
Python | aws_cdk.aws_acmpca.CfnCertificate.CustomExtensionProperty |
TypeScript | @aws-cdk/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 * as acmpca from '@aws-cdk/aws-acmpca';
const customExtensionProperty: acmpca.CfnCertificate.CustomExtensionProperty = {
objectIdentifier: 'objectIdentifier',
value: 'value',
// the properties below are optional
critical: false,
};
Properties
Name | Type | Description |
---|---|---|
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? | boolean | IResolvable | Specifies 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.