Amazon EventBridge Pipes · JSON Structure

Amazon Eventbridge Pipes Pipe Source Dynamo Db Stream Parameters Structure

The parameters for using a DynamoDB stream as a source.

Type: object Properties: 8 Required: 1
Amazon Web ServicesEvent-DrivenIntegrationMessagingServerless

PipeSourceDynamoDBStreamParameters is a JSON Structure definition published by Amazon EventBridge Pipes, describing 8 properties, of which 1 is required. It conforms to the https://json-structure.org/meta/core/v0/# meta-schema.

Properties

BatchSize DeadLetterConfig MaximumBatchingWindowInSeconds MaximumRecordAgeInSeconds MaximumRetryAttempts OnPartialBatchItemFailure ParallelizationFactor StartingPosition

Meta-schema: https://json-structure.org/meta/core/v0/#

JSON Structure

Raw ↑
{
  "$schema": "https://json-structure.org/meta/core/v0/#",
  "$id": "https://raw.githubusercontent.com/api-evangelist/amazon-eventbridge-pipes/refs/heads/main/json-structure/amazon-eventbridge-pipes-pipe-source-dynamo-db-stream-parameters-structure.json",
  "name": "PipeSourceDynamoDBStreamParameters",
  "description": "The parameters for using a DynamoDB stream as a source.",
  "type": "object",
  "properties": {
    "BatchSize": {
      "allOf": [
        {
          "$ref": "#/components/schemas/LimitMax10000"
        },
        {
          "description": "The maximum number of records to include in each batch."
        }
      ]
    },
    "DeadLetterConfig": {
      "allOf": [
        {
          "$ref": "#/components/schemas/DeadLetterConfig"
        },
        {
          "description": "Define the target queue to send dead-letter queue events to."
        }
      ]
    },
    "MaximumBatchingWindowInSeconds": {
      "allOf": [
        {
          "$ref": "#/components/schemas/MaximumBatchingWindowInSeconds"
        },
        {
          "description": "The maximum length of a time to wait for events."
        }
      ]
    },
    "MaximumRecordAgeInSeconds": {
      "allOf": [
        {
          "$ref": "#/components/schemas/MaximumRecordAgeInSeconds"
        },
        {
          "description": "(Streams only) Discard records older than the specified age. The default value is -1, which sets the maximum age to infinite. When the value is set to infinite, EventBridge never discards old records. "
        }
      ]
    },
    "MaximumRetryAttempts": {
      "allOf": [
        {
          "$ref": "#/components/schemas/MaximumRetryAttemptsESM"
        },
        {
          "description": "(Streams only) Discard records after the specified number of retries. The default value is -1, which sets the maximum number of retries to infinite. When MaximumRetryAttempts is infinite, EventBridge retries failed records until the record expires in the event source."
        }
      ]
    },
    "OnPartialBatchItemFailure": {
      "allOf": [
        {
          "$ref": "#/components/schemas/OnPartialBatchItemFailureStreams"
        },
        {
          "description": "(Streams only) Define how to handle item process failures. <code>AUTOMATIC_BISECT</code> halves each batch and retry each half until all the records are processed or there is one failed message left in the batch."
        }
      ]
    },
    "ParallelizationFactor": {
      "allOf": [
        {
          "$ref": "#/components/schemas/LimitMax10"
        },
        {
          "description": "(Streams only) The number of batches to process concurrently from each shard. The default value is 1."
        }
      ]
    },
    "StartingPosition": {
      "allOf": [
        {
          "$ref": "#/components/schemas/DynamoDBStreamStartPosition"
        },
        {
          "description": "(Streams only) The position in a stream from which to start reading."
        }
      ]
    }
  },
  "required": [
    "StartingPosition"
  ]
}