Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR PYTHON

Kinesis Client get_records response json

{
    'Records': [
        {
            'SequenceNumber': 'string',
            'ApproximateArrivalTimestamp': datetime(2015, 1, 1),
            'Data': b'bytes',
            'PartitionKey': 'string',
            'EncryptionType': 'NONE'|'KMS'
        },
    ],
    'NextShardIterator': 'string',
    'MillisBehindLatest': 123,
    'ChildShards': [
        {
            'ShardId': 'string',
            'ParentShards': [
                'string',
            ],
            'HashKeyRange': {
                'StartingHashKey': 'string',
                'EndingHashKey': 'string'
            }
        },
    ]
}
Source by boto3.amazonaws.com #
 
PREVIOUS NEXT
Tagged: #Kinesis #Client #response #json
ADD COMMENT
Topic
Name
6+5 =