interface KeyUsageProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.CfnPropertyMixins.AWS.PCAConnectorAD.CfnTemplatePropsMixin.KeyUsageProperty |
Go | github.com/aws/aws-cdk-go/awscdkcfnpropertymixins/v2/awspcaconnectorad#CfnTemplatePropsMixin_KeyUsageProperty |
Java | software.amazon.awscdk.cfnpropertymixins.services.pcaconnectorad.CfnTemplatePropsMixin.KeyUsageProperty |
Python | aws_cdk.cfn_property_mixins.aws_pcaconnectorad.CfnTemplatePropsMixin.KeyUsageProperty |
TypeScript | @aws-cdk/cfn-property-mixins » aws_pcaconnectorad » 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 { aws_pcaconnectorad as pcaconnectorad } from '@aws-cdk/cfn-property-mixins';
const keyUsageProperty: pcaconnectorad.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