Interface CfnKey.KeyModesOfUseProperty

All Superinterfaces:
software.amazon.jsii.JsiiSerializable
All Known Implementing Classes:
CfnKey.KeyModesOfUseProperty.Jsii$Proxy
Enclosing class:
CfnKey

@Stability(Stable) public static interface CfnKey.KeyModesOfUseProperty extends software.amazon.jsii.JsiiSerializable
The list of cryptographic operations that you can perform using the key.

The modes of use are defined in section A.5.3 of the TR-31 spec.

Example:

 // The code below shows an example of how to instantiate this type.
 // The values are placeholders you should change.
 import software.amazon.awscdk.services.paymentcryptography.*;
 KeyModesOfUseProperty keyModesOfUseProperty = KeyModesOfUseProperty.builder()
         .decrypt(false)
         .deriveKey(false)
         .encrypt(false)
         .generate(false)
         .noRestrictions(false)
         .sign(false)
         .unwrap(false)
         .verify(false)
         .wrap(false)
         .build();
 

See Also: