KeyMetadata constructor

KeyMetadata({
  1. required String keyId,
  2. String? awsAccountId,
  3. String? arn,
  4. String? cloudHsmClusterId,
  5. DateTime? creationDate,
  6. String? customKeyStoreId,
  7. CustomerMasterKeySpec? customerMasterKeySpec,
  8. DateTime? deletionDate,
  9. String? description,
  10. bool? enabled,
  11. List<EncryptionAlgorithmSpec>? encryptionAlgorithms,
  12. ExpirationModelType? expirationModel,
  13. KeyManagerType? keyManager,
  14. KeyState? keyState,
  15. KeyUsageType? keyUsage,
  16. OriginType? origin,
  17. List<SigningAlgorithmSpec>? signingAlgorithms,
  18. DateTime? validTo,
})

Implementation

KeyMetadata({
  required this.keyId,
  this.awsAccountId,
  this.arn,
  this.cloudHsmClusterId,
  this.creationDate,
  this.customKeyStoreId,
  this.customerMasterKeySpec,
  this.deletionDate,
  this.description,
  this.enabled,
  this.encryptionAlgorithms,
  this.expirationModel,
  this.keyManager,
  this.keyState,
  this.keyUsage,
  this.origin,
  this.signingAlgorithms,
  this.validTo,
});