interface KeyUsageProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.PCAConnectorAD.Mixins.CfnTemplatePropsMixin.KeyUsageProperty |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awspcaconnectorad/mixins#CfnTemplatePropsMixin_KeyUsageProperty |
Java | software.amazon.awscdk.mixins.preview.services.pcaconnectorad.mixins.CfnTemplatePropsMixin.KeyUsageProperty |
Python | aws_cdk.mixins_preview.aws_pcaconnectorad.mixins.CfnTemplatePropsMixin.KeyUsageProperty |
TypeScript | @aws-cdk/mixins-preview » aws_pcaconnectorad » mixins » CfnTemplatePropsMixin » KeyUsageProperty |
The key usage extension defines the purpose (e.g., encipherment, signature) of the key contained in the certificate.
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 keyUsageProperty: pcaconnectorad_mixins.CfnTemplatePropsMixin.KeyUsageProperty = {
critical: false,
usageFlags: {
dataEncipherment: false,
digitalSignature: false,
keyAgreement: false,
keyEncipherment: false,
nonRepudiation: false,
},
};
Properties
| Name | Type | Description |
|---|---|---|
| critical? | boolean | IResolvable | Sets the key usage extension to critical. |
| usage | IResolvable | Key | The key usage flags represent the purpose (e.g., encipherment, signature) of the key contained in the certificate. |
critical?
Type:
boolean | IResolvable
(optional)
Sets the key usage extension to critical.
usageFlags?
Type:
IResolvable | Key
(optional)
The key usage flags represent the purpose (e.g., encipherment, signature) of the key contained in the certificate.

.NET
Go
Java
Python
TypeScript