interface ExtendedKeyUsageProperty
Language | Type name |
---|---|
.NET | Amazon.CDK.AWS.ACMPCA.CfnCertificate.ExtendedKeyUsageProperty |
Go | github.com/aws/aws-cdk-go/awscdk/v2/awsacmpca#CfnCertificate_ExtendedKeyUsageProperty |
Java | software.amazon.awscdk.services.acmpca.CfnCertificate.ExtendedKeyUsageProperty |
Python | aws_cdk.aws_acmpca.CfnCertificate.ExtendedKeyUsageProperty |
TypeScript | aws-cdk-lib » aws_acmpca » CfnCertificate » ExtendedKeyUsageProperty |
Specifies additional purposes for which the certified public key may be used other than basic purposes indicated in the KeyUsage
extension.
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 extendedKeyUsageProperty: acmpca.CfnCertificate.ExtendedKeyUsageProperty = {
extendedKeyUsageObjectIdentifier: 'extendedKeyUsageObjectIdentifier',
extendedKeyUsageType: 'extendedKeyUsageType',
};
Properties
Name | Type | Description |
---|---|---|
extended | string | Specifies a custom ExtendedKeyUsage with an object identifier (OID). |
extended | string | Specifies a standard ExtendedKeyUsage as defined as in RFC 5280 . |
extendedKeyUsageObjectIdentifier?
Type:
string
(optional)
Specifies a custom ExtendedKeyUsage
with an object identifier (OID).
extendedKeyUsageType?
Type:
string
(optional)
Specifies a standard ExtendedKeyUsage
as defined as in RFC 5280 .