interface ExtensionsV4Property
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.PCAConnectorAD.Mixins.CfnTemplatePropsMixin.ExtensionsV4Property |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awspcaconnectorad/mixins#CfnTemplatePropsMixin_ExtensionsV4Property |
Java | software.amazon.awscdk.mixins.preview.services.pcaconnectorad.mixins.CfnTemplatePropsMixin.ExtensionsV4Property |
Python | aws_cdk.mixins_preview.aws_pcaconnectorad.mixins.CfnTemplatePropsMixin.ExtensionsV4Property |
TypeScript | @aws-cdk/mixins-preview » aws_pcaconnectorad » mixins » CfnTemplatePropsMixin » ExtensionsV4Property |
Certificate extensions for v4 template schema.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { mixins as pcaconnectorad_mixins } from '@aws-cdk/mixins-preview/aws-pcaconnectorad';
const extensionsV4Property: pcaconnectorad_mixins.CfnTemplatePropsMixin.ExtensionsV4Property = {
applicationPolicies: {
critical: false,
policies: [{
policyObjectIdentifier: 'policyObjectIdentifier',
policyType: 'policyType',
}],
},
keyUsage: {
critical: false,
usageFlags: {
dataEncipherment: false,
digitalSignature: false,
keyAgreement: false,
keyEncipherment: false,
nonRepudiation: false,
},
},
};
Properties
| Name | Type | Description |
|---|---|---|
| application | IResolvable | Application | Application policies specify what the certificate is used for and its purpose. |
| key | IResolvable | Key | The key usage extension defines the purpose (e.g., encipherment, signature) of the key contained in the certificate. |
applicationPolicies?
Type:
IResolvable | Application
(optional)
Application policies specify what the certificate is used for and its purpose.
keyUsage?
Type:
IResolvable | Key
(optional)
The key usage extension defines the purpose (e.g., encipherment, signature) of the key contained in the certificate.

.NET
Go
Java
Python
TypeScript