interface ExtendedKeyUsageProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.CfnPropertyMixins.AWS.ACMPCA.CfnCertificatePropsMixin.ExtendedKeyUsageProperty |
Go | github.com/aws/aws-cdk-go/awscdkcfnpropertymixins/v2/awsacmpca#CfnCertificatePropsMixin_ExtendedKeyUsageProperty |
Java | software.amazon.awscdk.cfnpropertymixins.services.acmpca.CfnCertificatePropsMixin.ExtendedKeyUsageProperty |
Python | aws_cdk.cfn_property_mixins.aws_acmpca.CfnCertificatePropsMixin.ExtendedKeyUsageProperty |
TypeScript | @aws-cdk/cfn-property-mixins » aws_acmpca » CfnCertificatePropsMixin » 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/cfn-property-mixins';
const extendedKeyUsageProperty: acmpca.CfnCertificatePropsMixin.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 .

.NET
Go
Java
Python
TypeScript