18 from typing
import Dict, Tuple
20 from .type
import SecretType
21 from .secret
import Secret
22 from ...codable
import KeyDescriptor
28 Represents AWS Secret entity from Coretex.ai
41 def __init__(self) -> None:
42 super().__init__(SecretType.aws)
45 def _keyDescriptors(cls) -> Dict[str, KeyDescriptor]:
46 descriptors = super()._keyDescriptors()
51 def _encryptedFields(self) -> Tuple[str, ...]:
52 return (
"key",
"value")