> ## Documentation Index
> Fetch the complete documentation index at: https://wiki.joinswift.app/llms.txt
> Use this file to discover all available pages before exploring further.

# Configure AWS Kinesis stream sink

> Configure AWS Kinesis as a destination for streaming event data



## OpenAPI

````yaml post /streaming/kinesis
openapi: 3.0.1
info:
  title: OpenAPI spec for Swift Customer Data Processing and Risk Score
  description: A specification for Swift's customer data processing and risk score APIs
  license:
    name: MIT
  version: 1.0.0
servers:
  - url: http://sandbox.mintlify.com
security:
  - bearerAuth: []
paths:
  /streaming/kinesis:
    post:
      tags:
        - Streaming
      summary: Configure AWS Kinesis stream sink
      description: Configure AWS Kinesis as a destination for streaming event data
      requestBody:
        description: Kinesis configuration details
        required: true
        content:
          application/json:
            schema:
              type: object
              required:
                - streamName
                - region
                - credentials
              properties:
                streamName:
                  type: string
                  description: Name of the Kinesis stream
                region:
                  type: string
                  description: AWS region of the stream
                credentials:
                  type: object
                  required:
                    - accessKeyId
                    - secretAccessKey
                  properties:
                    accessKeyId:
                      type: string
                      description: AWS access key ID
                    secretAccessKey:
                      type: string
                      description: AWS secret access key
                enabled:
                  type: boolean
                  description: Whether streaming to this sink is enabled
                  default: true
      responses:
        '200':
          description: Kinesis sink configured successfully
components:
  securitySchemes:
    bearerAuth:
      type: http
      scheme: bearer

````