interface KeyUsageProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.aws_pcaconnectorad.CfnTemplate.KeyUsageProperty |
Go | github.com/aws/aws-cdk-go/awscdk/v2/awspcaconnectorad#CfnTemplate_KeyUsageProperty |
Java | software.amazon.awscdk.services.pcaconnectorad.CfnTemplate.KeyUsageProperty |
Python | aws_cdk.aws_pcaconnectorad.CfnTemplate.KeyUsageProperty |
TypeScript | aws-cdk-lib » aws_pcaconnectorad » CfnTemplate » 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 { aws_pcaconnectorad as pcaconnectorad } from 'aws-cdk-lib';
const keyUsageProperty: pcaconnectorad.CfnTemplate.KeyUsageProperty = {
usageFlags: {
dataEncipherment: false,
digitalSignature: false,
keyAgreement: false,
keyEncipherment: false,
nonRepudiation: false,
},
// the properties below are optional
critical: false,
};
Properties
| Name | Type | Description |
|---|---|---|
| usage | IResolvable | Key | The key usage flags represent the purpose (e.g., encipherment, signature) of the key contained in the certificate. |
| critical? | boolean | IResolvable | Sets the key usage extension to critical. |
usageFlags
Type:
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.

.NET
Go
Java
Python
TypeScript