@@ -113,8 +113,7 @@ class KeyringTrace(object):
113
113
.. versionadded:: 1.5.0
114
114
115
115
:param MasterKeyInfo wrapping_key: Wrapping key used
116
- :param flags: Actions performed
117
- :type flags: set of :class:`KeyringTraceFlag`
116
+ :param Set[KeyringTraceFlag] flags: Actions performed
118
117
"""
119
118
120
119
wrapping_key = attr .ib (validator = instance_of (MasterKeyInfo ))
@@ -126,19 +125,14 @@ class MessageHeader(object):
126
125
# pylint: disable=too-many-instance-attributes
127
126
"""Deserialized message header object.
128
127
129
- :param version: Message format version, per spec
130
- :type version: SerializationVersion
131
- :param type: Message content type, per spec
132
- :type type: ObjectType
133
- :param algorithm: Algorithm to use for encryption
134
- :type algorithm: Algorithm
128
+ :param SerializationVersion version: Message format version, per spec
129
+ :param ObjectType type: Message content type, per spec
130
+ :param AlgorithmSuite algorithm: Algorithm to use for encryption
135
131
:param bytes message_id: Message ID
136
- :param dict encryption_context: Dictionary defining encryption context
137
- :param encrypted_data_keys: Encrypted data keys
138
- :type encrypted_data_keys: set of :class:`aws_encryption_sdk.structures.EncryptedDataKey`
139
- :param content_type: Message content framing type (framed/non-framed)
140
- :type content_type: ContentType
141
- :param bytes content_aad_length: empty
132
+ :param Dict[str,str] encryption_context: Dictionary defining encryption context
133
+ :param Sequence[EncryptedDataKey] encrypted_data_keys: Encrypted data keys
134
+ :param ContentType content_type: Message content framing type (framed/non-framed)
135
+ :param int content_aad_length: empty
142
136
:param int header_iv_length: Bytes in Initialization Vector value found in header
143
137
:param int frame_length: Length of message frame in bytes
144
138
"""
0 commit comments