Record
public struct Record : AWSShape
Undocumented
-
Declaration
Swift
public static var _members: [AWSShapeMember]
-
The approximate time that the record was inserted into the stream.
Declaration
Swift
public let approximateArrivalTimestamp: TimeStamp?
-
The data blob. The data in the blob is both opaque and immutable to Kinesis Data Streams, which does not inspect, interpret, or change the data in the blob in any way. When the data blob (the payload before base64-encoding) is added to the partition key size, the total size must not exceed the maximum record size (1 MiB).
Declaration
Swift
public let data: Data
-
The encryption type used on the record. This parameter can be one of the following values: NONE: Do not encrypt the records in the stream. KMS: Use server-side encryption on the records in the stream using a customer-managed AWS KMS key.
Declaration
Swift
public let encryptionType: EncryptionType?
-
Identifies which shard in the stream the data record is assigned to.
Declaration
Swift
public let partitionKey: String
-
The unique identifier of the record within its shard.
Declaration
Swift
public let sequenceNumber: String
-
Undocumented
Declaration
Swift
public init(approximateArrivalTimestamp: TimeStamp? = nil, data: Data, encryptionType: EncryptionType? = nil, partitionKey: String, sequenceNumber: String)