{ "version":"2.0", "metadata":{ "apiVersion":"2012-08-10", "endpointPrefix":"streams.dynamodb", "jsonVersion":"1.0", "protocol":"json", "serviceFullName":"Amazon DynamoDB Streams", "serviceId":"DynamoDB Streams", "signatureVersion":"v4", "signingName":"dynamodb", "targetPrefix":"DynamoDBStreams_20120810", "uid":"streams-dynamodb-2012-08-10" }, "operations":{ "DescribeStream":{ "name":"DescribeStream", "http":{ "method":"POST", "requestUri":"/" }, "input":{"shape":"DescribeStreamInput"}, "output":{"shape":"DescribeStreamOutput"}, "errors":[ {"shape":"ResourceNotFoundException"}, {"shape":"InternalServerError"} ], "documentation":"

Returns information about a stream, including the current status of the stream, its Amazon Resource Name (ARN), the composition of its shards, and its corresponding DynamoDB table.

You can call DescribeStream at a maximum rate of 10 times per second.

Each shard in the stream has a SequenceNumberRange associated with it. If the SequenceNumberRange has a StartingSequenceNumber but no EndingSequenceNumber, then the shard is still open (able to receive more stream records). If both StartingSequenceNumber and EndingSequenceNumber are present, then that shard is closed and can no longer receive more data.

" }, "GetRecords":{ "name":"GetRecords", "http":{ "method":"POST", "requestUri":"/" }, "input":{"shape":"GetRecordsInput"}, "output":{"shape":"GetRecordsOutput"}, "errors":[ {"shape":"ResourceNotFoundException"}, {"shape":"LimitExceededException"}, {"shape":"InternalServerError"}, {"shape":"ExpiredIteratorException"}, {"shape":"TrimmedDataAccessException"} ], "documentation":"

Retrieves the stream records from a given shard.

Specify a shard iterator using the ShardIterator parameter. The shard iterator specifies the position in the shard from which you want to start reading stream records sequentially. If there are no stream records available in the portion of the shard that the iterator points to, GetRecords returns an empty list. Note that it might take multiple calls to get to a portion of the shard that contains stream records.

GetRecords can retrieve a maximum of 1 MB of data or 1000 stream records, whichever comes first.

" }, "GetShardIterator":{ "name":"GetShardIterator", "http":{ "method":"POST", "requestUri":"/" }, "input":{"shape":"GetShardIteratorInput"}, "output":{"shape":"GetShardIteratorOutput"}, "errors":[ {"shape":"ResourceNotFoundException"}, {"shape":"InternalServerError"}, {"shape":"TrimmedDataAccessException"} ], "documentation":"

Returns a shard iterator. A shard iterator provides information about how to retrieve the stream records from within a shard. Use the shard iterator in a subsequent GetRecords request to read the stream records from the shard.

A shard iterator expires 15 minutes after it is returned to the requester.

" }, "ListStreams":{ "name":"ListStreams", "http":{ "method":"POST", "requestUri":"/" }, "input":{"shape":"ListStreamsInput"}, "output":{"shape":"ListStreamsOutput"}, "errors":[ {"shape":"ResourceNotFoundException"}, {"shape":"InternalServerError"} ], "documentation":"

Returns an array of stream ARNs associated with the current account and endpoint. If the TableName parameter is present, then ListStreams will return only the streams ARNs for that table.

You can call ListStreams at a maximum rate of 5 times per second.

" } }, "shapes":{ "AttributeMap":{ "type":"map", "key":{"shape":"AttributeName"}, "value":{"shape":"AttributeValue"} }, "AttributeName":{ "type":"string", "max":65535 }, "AttributeValue":{ "type":"structure", "members":{ "S":{ "shape":"StringAttributeValue", "documentation":"

A String data type.

" }, "N":{ "shape":"NumberAttributeValue", "documentation":"

A Number data type.

" }, "B":{ "shape":"BinaryAttributeValue", "documentation":"

A Binary data type.

" }, "SS":{ "shape":"StringSetAttributeValue", "documentation":"

A String Set data type.

" }, "NS":{ "shape":"NumberSetAttributeValue", "documentation":"

A Number Set data type.

" }, "BS":{ "shape":"BinarySetAttributeValue", "documentation":"

A Binary Set data type.

" }, "M":{ "shape":"MapAttributeValue", "documentation":"

A Map data type.

" }, "L":{ "shape":"ListAttributeValue", "documentation":"

A List data type.

" }, "NULL":{ "shape":"NullAttributeValue", "documentation":"

A Null data type.

" }, "BOOL":{ "shape":"BooleanAttributeValue", "documentation":"

A Boolean data type.

" } }, "documentation":"

Represents the data for an attribute. You can set one, and only one, of the elements.

Each attribute in an item is a name-value pair. An attribute can be single-valued or multi-valued set. For example, a book item can have title and authors attributes. Each book has one title but can have many authors. The multi-valued attribute is a set; duplicate values are not allowed.

" }, "BinaryAttributeValue":{"type":"blob"}, "BinarySetAttributeValue":{ "type":"list", "member":{"shape":"BinaryAttributeValue"} }, "BooleanAttributeValue":{"type":"boolean"}, "Date":{"type":"timestamp"}, "DescribeStreamInput":{ "type":"structure", "required":["StreamArn"], "members":{ "StreamArn":{ "shape":"StreamArn", "documentation":"

The Amazon Resource Name (ARN) for the stream.

" }, "Limit":{ "shape":"PositiveIntegerObject", "documentation":"

The maximum number of shard objects to return. The upper limit is 100.

" }, "ExclusiveStartShardId":{ "shape":"ShardId", "documentation":"

The shard ID of the first item that this operation will evaluate. Use the value that was returned for LastEvaluatedShardId in the previous operation.

" } }, "documentation":"

Represents the input of a DescribeStream operation.

" }, "DescribeStreamOutput":{ "type":"structure", "members":{ "StreamDescription":{ "shape":"StreamDescription", "documentation":"

A complete description of the stream, including its creation date and time, the DynamoDB table associated with the stream, the shard IDs within the stream, and the beginning and ending sequence numbers of stream records within the shards.

" } }, "documentation":"

Represents the output of a DescribeStream operation.

" }, "ErrorMessage":{"type":"string"}, "ExpiredIteratorException":{ "type":"structure", "members":{ "message":{ "shape":"ErrorMessage", "documentation":"

The provided iterator exceeds the maximum age allowed.

" } }, "documentation":"

The shard iterator has expired and can no longer be used to retrieve stream records. A shard iterator expires 15 minutes after it is retrieved using the GetShardIterator action.

", "exception":true }, "GetRecordsInput":{ "type":"structure", "required":["ShardIterator"], "members":{ "ShardIterator":{ "shape":"ShardIterator", "documentation":"

A shard iterator that was retrieved from a previous GetShardIterator operation. This iterator can be used to access the stream records in this shard.

" }, "Limit":{ "shape":"PositiveIntegerObject", "documentation":"

The maximum number of records to return from the shard. The upper limit is 1000.

" } }, "documentation":"

Represents the input of a GetRecords operation.

" }, "GetRecordsOutput":{ "type":"structure", "members":{ "Records":{ "shape":"RecordList", "documentation":"

The stream records from the shard, which were retrieved using the shard iterator.

" }, "NextShardIterator":{ "shape":"ShardIterator", "documentation":"

The next position in the shard from which to start sequentially reading stream records. If set to null, the shard has been closed and the requested iterator will not return any more data.

" } }, "documentation":"

Represents the output of a GetRecords operation.

" }, "GetShardIteratorInput":{ "type":"structure", "required":[ "StreamArn", "ShardId", "ShardIteratorType" ], "members":{ "StreamArn":{ "shape":"StreamArn", "documentation":"

The Amazon Resource Name (ARN) for the stream.

" }, "ShardId":{ "shape":"ShardId", "documentation":"

The identifier of the shard. The iterator will be returned for this shard ID.

" }, "ShardIteratorType":{ "shape":"ShardIteratorType", "documentation":"

Determines how the shard iterator is used to start reading stream records from the shard:

" }, "SequenceNumber":{ "shape":"SequenceNumber", "documentation":"

The sequence number of a stream record in the shard from which to start reading.

" } }, "documentation":"

Represents the input of a GetShardIterator operation.

" }, "GetShardIteratorOutput":{ "type":"structure", "members":{ "ShardIterator":{ "shape":"ShardIterator", "documentation":"

The position in the shard from which to start reading stream records sequentially. A shard iterator specifies this position using the sequence number of a stream record in a shard.

" } }, "documentation":"

Represents the output of a GetShardIterator operation.

" }, "Identity":{ "type":"structure", "members":{ "PrincipalId":{ "shape":"String", "documentation":"

A unique identifier for the entity that made the call. For Time To Live, the principalId is \"dynamodb.amazonaws.com\".

" }, "Type":{ "shape":"String", "documentation":"

The type of the identity. For Time To Live, the type is \"Service\".

" } }, "documentation":"

Contains details about the type of identity that made the request.

" }, "InternalServerError":{ "type":"structure", "members":{ "message":{ "shape":"ErrorMessage", "documentation":"

The server encountered an internal error trying to fulfill the request.

" } }, "documentation":"

An error occurred on the server side.

", "exception":true, "fault":true }, "KeySchema":{ "type":"list", "member":{"shape":"KeySchemaElement"}, "max":2, "min":1 }, "KeySchemaAttributeName":{ "type":"string", "max":255, "min":1 }, "KeySchemaElement":{ "type":"structure", "required":[ "AttributeName", "KeyType" ], "members":{ "AttributeName":{ "shape":"KeySchemaAttributeName", "documentation":"

The name of a key attribute.

" }, "KeyType":{ "shape":"KeyType", "documentation":"

The attribute data, consisting of the data type and the attribute value itself.

" } }, "documentation":"

Represents a single element of a key schema. A key schema specifies the attributes that make up the primary key of a table, or the key attributes of an index.

A KeySchemaElement represents exactly one attribute of the primary key. For example, a simple primary key (partition key) would be represented by one KeySchemaElement. A composite primary key (partition key and sort key) would require one KeySchemaElement for the partition key, and another KeySchemaElement for the sort key.

The partition key of an item is also known as its hash attribute. The term \"hash attribute\" derives from DynamoDB's usage of an internal hash function to evenly distribute data items across partitions, based on their partition key values.

The sort key of an item is also known as its range attribute. The term \"range attribute\" derives from the way DynamoDB stores items with the same partition key physically close together, in sorted order by the sort key value.

" }, "KeyType":{ "type":"string", "enum":[ "HASH", "RANGE" ] }, "LimitExceededException":{ "type":"structure", "members":{ "message":{ "shape":"ErrorMessage", "documentation":"

Too many operations for a given subscriber.

" } }, "documentation":"

Your request rate is too high. The AWS SDKs for DynamoDB automatically retry requests that receive this exception. Your request is eventually successful, unless your retry queue is too large to finish. Reduce the frequency of requests and use exponential backoff. For more information, go to Error Retries and Exponential Backoff in the Amazon DynamoDB Developer Guide.

", "exception":true }, "ListAttributeValue":{ "type":"list", "member":{"shape":"AttributeValue"} }, "ListStreamsInput":{ "type":"structure", "members":{ "TableName":{ "shape":"TableName", "documentation":"

If this parameter is provided, then only the streams associated with this table name are returned.

" }, "Limit":{ "shape":"PositiveIntegerObject", "documentation":"

The maximum number of streams to return. The upper limit is 100.

" }, "ExclusiveStartStreamArn":{ "shape":"StreamArn", "documentation":"

The ARN (Amazon Resource Name) of the first item that this operation will evaluate. Use the value that was returned for LastEvaluatedStreamArn in the previous operation.

" } }, "documentation":"

Represents the input of a ListStreams operation.

" }, "ListStreamsOutput":{ "type":"structure", "members":{ "Streams":{ "shape":"StreamList", "documentation":"

A list of stream descriptors associated with the current account and endpoint.

" }, "LastEvaluatedStreamArn":{ "shape":"StreamArn", "documentation":"

The stream ARN of the item where the operation stopped, inclusive of the previous result set. Use this value to start a new operation, excluding this value in the new request.

If LastEvaluatedStreamArn is empty, then the \"last page\" of results has been processed and there is no more data to be retrieved.

If LastEvaluatedStreamArn is not empty, it does not necessarily mean that there is more data in the result set. The only way to know when you have reached the end of the result set is when LastEvaluatedStreamArn is empty.

" } }, "documentation":"

Represents the output of a ListStreams operation.

" }, "MapAttributeValue":{ "type":"map", "key":{"shape":"AttributeName"}, "value":{"shape":"AttributeValue"} }, "NullAttributeValue":{"type":"boolean"}, "NumberAttributeValue":{"type":"string"}, "NumberSetAttributeValue":{ "type":"list", "member":{"shape":"NumberAttributeValue"} }, "OperationType":{ "type":"string", "enum":[ "INSERT", "MODIFY", "REMOVE" ] }, "PositiveIntegerObject":{ "type":"integer", "min":1 }, "PositiveLongObject":{ "type":"long", "min":1 }, "Record":{ "type":"structure", "members":{ "eventID":{ "shape":"String", "documentation":"

A globally unique identifier for the event that was recorded in this stream record.

" }, "eventName":{ "shape":"OperationType", "documentation":"

The type of data modification that was performed on the DynamoDB table:

" }, "eventVersion":{ "shape":"String", "documentation":"

The version number of the stream record format. This number is updated whenever the structure of Record is modified.

Client applications must not assume that eventVersion will remain at a particular value, as this number is subject to change at any time. In general, eventVersion will only increase as the low-level DynamoDB Streams API evolves.

" }, "eventSource":{ "shape":"String", "documentation":"

The AWS service from which the stream record originated. For DynamoDB Streams, this is aws:dynamodb.

" }, "awsRegion":{ "shape":"String", "documentation":"

The region in which the GetRecords request was received.

" }, "dynamodb":{ "shape":"StreamRecord", "documentation":"

The main body of the stream record, containing all of the DynamoDB-specific fields.

" }, "userIdentity":{ "shape":"Identity", "documentation":"

Items that are deleted by the Time to Live process after expiration have the following fields:

" } }, "documentation":"

A description of a unique event within a stream.

" }, "RecordList":{ "type":"list", "member":{"shape":"Record"} }, "ResourceNotFoundException":{ "type":"structure", "members":{ "message":{ "shape":"ErrorMessage", "documentation":"

The resource which is being requested does not exist.

" } }, "documentation":"

The operation tried to access a nonexistent stream.

", "exception":true }, "SequenceNumber":{ "type":"string", "max":40, "min":21 }, "SequenceNumberRange":{ "type":"structure", "members":{ "StartingSequenceNumber":{ "shape":"SequenceNumber", "documentation":"

The first sequence number.

" }, "EndingSequenceNumber":{ "shape":"SequenceNumber", "documentation":"

The last sequence number.

" } }, "documentation":"

The beginning and ending sequence numbers for the stream records contained within a shard.

" }, "Shard":{ "type":"structure", "members":{ "ShardId":{ "shape":"ShardId", "documentation":"

The system-generated identifier for this shard.

" }, "SequenceNumberRange":{ "shape":"SequenceNumberRange", "documentation":"

The range of possible sequence numbers for the shard.

" }, "ParentShardId":{ "shape":"ShardId", "documentation":"

The shard ID of the current shard's parent.

" } }, "documentation":"

A uniquely identified group of stream records within a stream.

" }, "ShardDescriptionList":{ "type":"list", "member":{"shape":"Shard"} }, "ShardId":{ "type":"string", "max":65, "min":28 }, "ShardIterator":{ "type":"string", "max":2048, "min":1 }, "ShardIteratorType":{ "type":"string", "enum":[ "TRIM_HORIZON", "LATEST", "AT_SEQUENCE_NUMBER", "AFTER_SEQUENCE_NUMBER" ] }, "Stream":{ "type":"structure", "members":{ "StreamArn":{ "shape":"StreamArn", "documentation":"

The Amazon Resource Name (ARN) for the stream.

" }, "TableName":{ "shape":"TableName", "documentation":"

The DynamoDB table with which the stream is associated.

" }, "StreamLabel":{ "shape":"String", "documentation":"

A timestamp, in ISO 8601 format, for this stream.

Note that LatestStreamLabel is not a unique identifier for the stream, because it is possible that a stream from another table might have the same timestamp. However, the combination of the following three elements is guaranteed to be unique:

" } }, "documentation":"

Represents all of the data describing a particular stream.

" }, "StreamArn":{ "type":"string", "max":1024, "min":37 }, "StreamDescription":{ "type":"structure", "members":{ "StreamArn":{ "shape":"StreamArn", "documentation":"

The Amazon Resource Name (ARN) for the stream.

" }, "StreamLabel":{ "shape":"String", "documentation":"

A timestamp, in ISO 8601 format, for this stream.

Note that LatestStreamLabel is not a unique identifier for the stream, because it is possible that a stream from another table might have the same timestamp. However, the combination of the following three elements is guaranteed to be unique:

" }, "StreamStatus":{ "shape":"StreamStatus", "documentation":"

Indicates the current status of the stream:

" }, "StreamViewType":{ "shape":"StreamViewType", "documentation":"

Indicates the format of the records within this stream:

" }, "CreationRequestDateTime":{ "shape":"Date", "documentation":"

The date and time when the request to create this stream was issued.

" }, "TableName":{ "shape":"TableName", "documentation":"

The DynamoDB table with which the stream is associated.

" }, "KeySchema":{ "shape":"KeySchema", "documentation":"

The key attribute(s) of the stream's DynamoDB table.

" }, "Shards":{ "shape":"ShardDescriptionList", "documentation":"

The shards that comprise the stream.

" }, "LastEvaluatedShardId":{ "shape":"ShardId", "documentation":"

The shard ID of the item where the operation stopped, inclusive of the previous result set. Use this value to start a new operation, excluding this value in the new request.

If LastEvaluatedShardId is empty, then the \"last page\" of results has been processed and there is currently no more data to be retrieved.

If LastEvaluatedShardId is not empty, it does not necessarily mean that there is more data in the result set. The only way to know when you have reached the end of the result set is when LastEvaluatedShardId is empty.

" } }, "documentation":"

Represents all of the data describing a particular stream.

" }, "StreamList":{ "type":"list", "member":{"shape":"Stream"} }, "StreamRecord":{ "type":"structure", "members":{ "ApproximateCreationDateTime":{ "shape":"Date", "documentation":"

The approximate date and time when the stream record was created, in UNIX epoch time format.

" }, "Keys":{ "shape":"AttributeMap", "documentation":"

The primary key attribute(s) for the DynamoDB item that was modified.

" }, "NewImage":{ "shape":"AttributeMap", "documentation":"

The item in the DynamoDB table as it appeared after it was modified.

" }, "OldImage":{ "shape":"AttributeMap", "documentation":"

The item in the DynamoDB table as it appeared before it was modified.

" }, "SequenceNumber":{ "shape":"SequenceNumber", "documentation":"

The sequence number of the stream record.

" }, "SizeBytes":{ "shape":"PositiveLongObject", "documentation":"

The size of the stream record, in bytes.

" }, "StreamViewType":{ "shape":"StreamViewType", "documentation":"

The type of data from the modified DynamoDB item that was captured in this stream record:

" } }, "documentation":"

A description of a single data modification that was performed on an item in a DynamoDB table.

" }, "StreamStatus":{ "type":"string", "enum":[ "ENABLING", "ENABLED", "DISABLING", "DISABLED" ] }, "StreamViewType":{ "type":"string", "enum":[ "NEW_IMAGE", "OLD_IMAGE", "NEW_AND_OLD_IMAGES", "KEYS_ONLY" ] }, "String":{"type":"string"}, "StringAttributeValue":{"type":"string"}, "StringSetAttributeValue":{ "type":"list", "member":{"shape":"StringAttributeValue"} }, "TableName":{ "type":"string", "max":255, "min":3, "pattern":"[a-zA-Z0-9_.-]+" }, "TrimmedDataAccessException":{ "type":"structure", "members":{ "message":{ "shape":"ErrorMessage", "documentation":"

\"The data you are trying to access has been trimmed.

" } }, "documentation":"

The operation attempted to read past the oldest stream record in a shard.

In DynamoDB Streams, there is a 24 hour limit on data retention. Stream records whose age exceeds this limit are subject to removal (trimming) from the stream. You might receive a TrimmedDataAccessException if:

", "exception":true } }, "documentation":"Amazon DynamoDB

Amazon DynamoDB Streams provides API actions for accessing streams and processing stream records. To learn more about application development with Streams, see Capturing Table Activity with DynamoDB Streams in the Amazon DynamoDB Developer Guide.

" }