Interface CfnTemplate.IKeyUsagePropertyProperty
The key usage property defines the purpose of the private key contained in the certificate.
Namespace: Amazon.CDK.AwsPcaconnectorad
Assembly: Amazon.CDK.Lib.dll
Syntax (csharp)
public interface IKeyUsagePropertyProperty
Syntax (vb)
Public Interface IKeyUsagePropertyProperty
Remarks
You can specify specific purposes using property flags or all by using property type ALL.
ExampleMetadata: fixture=_generated
Examples
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
using Amazon.CDK.Aws_pcaconnectorad;
var keyUsagePropertyProperty = new KeyUsagePropertyProperty {
PropertyFlags = new KeyUsagePropertyFlagsProperty {
Decrypt = false,
KeyAgreement = false,
Sign = false
},
PropertyType = "propertyType"
};
Synopsis
Properties
Property |
You can specify key usage for encryption, key agreement, and signature. |
Property |
You can specify all key usages using property type ALL. |
Properties
PropertyFlags
You can specify key usage for encryption, key agreement, and signature.
virtual object PropertyFlags { get; }
Property Value
System.
Remarks
You can use property flags or property type but not both.
PropertyType
You can specify all key usages using property type ALL.
virtual string PropertyType { get; }
Property Value
System.
Remarks
You can use property type or property flags but not both.