AWS Kinesis · Schema

DecreaseStreamRetentionPeriodInput

Represents the input for DecreaseStreamRetentionPeriod.

AnalyticsApache FlinkBig DataData ProcessingReal-TimeStreamingVideo

Properties

Name Type Description
StreamName object
RetentionPeriodHours object
StreamARN object
View JSON Schema on GitHub

JSON Schema

kinesis-decreasestreamretentionperiodinput-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/DecreaseStreamRetentionPeriodInput",
  "title": "DecreaseStreamRetentionPeriodInput",
  "type": "object",
  "required": [
    "RetentionPeriodHours"
  ],
  "properties": {
    "StreamName": {
      "allOf": [
        {
          "$ref": "#/components/schemas/StreamName"
        },
        {
          "description": "The name of the stream to modify."
        }
      ]
    },
    "RetentionPeriodHours": {
      "allOf": [
        {
          "$ref": "#/components/schemas/RetentionPeriodHours"
        },
        {
          "description": "The new retention period of the stream, in hours. Must be less than the current retention period."
        }
      ]
    },
    "StreamARN": {
      "allOf": [
        {
          "$ref": "#/components/schemas/StreamARN"
        },
        {
          "description": "The ARN of the stream."
        }
      ]
    }
  },
  "description": "Represents the input for <a>DecreaseStreamRetentionPeriod</a>."
}