AWS Kinesis · Schema

StreamDescriptionSummary

Represents the output for DescribeStreamSummary

AnalyticsApache FlinkBig DataData ProcessingReal-TimeStreamingVideo

Properties

Name Type Description
StreamName object
StreamARN object
StreamStatus object
StreamModeDetails object
RetentionPeriodHours object
StreamCreationTimestamp object
EnhancedMonitoring object
EncryptionType object
KeyId object
OpenShardCount object
ConsumerCount object
View JSON Schema on GitHub

JSON Schema

kinesis-streamdescriptionsummary-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/StreamDescriptionSummary",
  "title": "StreamDescriptionSummary",
  "type": "object",
  "required": [
    "StreamName",
    "StreamARN",
    "StreamStatus",
    "RetentionPeriodHours",
    "StreamCreationTimestamp",
    "EnhancedMonitoring",
    "OpenShardCount"
  ],
  "properties": {
    "StreamName": {
      "allOf": [
        {
          "$ref": "#/components/schemas/StreamName"
        },
        {
          "description": "The name of the stream being described."
        }
      ]
    },
    "StreamARN": {
      "allOf": [
        {
          "$ref": "#/components/schemas/StreamARN"
        },
        {
          "description": "The Amazon Resource Name (ARN) for the stream being described."
        }
      ]
    },
    "StreamStatus": {
      "allOf": [
        {
          "$ref": "#/components/schemas/StreamStatus"
        },
        {
          "description": "<p>The current status of the stream being described. The stream status is one of the following states:</p> <ul> <li> <p> <code>CREATING</code> - The stream is being created. Kinesis Data Streams immediately returns and sets <code>StreamStatus</code> to <code>CREATING</code>.</p> </li> <li> <p> <code>DELETING</code> - The stream is being deleted. The specified stream is in the <code>DELETING</code> state until Kinesis Data Streams completes the deletion.</p> </li> <li> <p> <code>ACTIVE</code> - The stream exists and is ready for read and write operations or deletion. You should perform read and write operations only on an <code>ACTIVE</code> stream.</p> </li> <li> <p> <code>UPDATING</code> - Shards in the stream are being merged or split. Read and write operations continue to work while the stream is in the <code>UPDATING</code> state.</p> </li> </ul>"
        }
      ]
    },
    "StreamModeDetails": {
      "allOf": [
        {
          "$ref": "#/components/schemas/StreamModeDetails"
        },
        {
          "description": " Specifies the capacity mode to which you want to set your data stream. Currently, in Kinesis Data Streams, you can choose between an <b>on-demand</b> ycapacity mode and a <b>provisioned</b> capacity mode for your data streams. "
        }
      ]
    },
    "RetentionPeriodHours": {
      "allOf": [
        {
          "$ref": "#/components/schemas/RetentionPeriodHours"
        },
        {
          "description": "The current retention period, in hours."
        }
      ]
    },
    "StreamCreationTimestamp": {
      "allOf": [
        {
          "$ref": "#/components/schemas/Timestamp"
        },
        {
          "description": "The approximate time that the stream was created."
        }
      ]
    },
    "EnhancedMonitoring": {
      "allOf": [
        {
          "$ref": "#/components/schemas/EnhancedMonitoringList"
        },
        {
          "description": "Represents the current enhanced monitoring settings of the stream."
        }
      ]
    },
    "EncryptionType": {
      "allOf": [
        {
          "$ref": "#/components/schemas/EncryptionType"
        },
        {
          "description": "<p>The encryption type used. This value is one of the following:</p> <ul> <li> <p> <code>KMS</code> </p> </li> <li> <p> <code>NONE</code> </p> </li> </ul>"
        }
      ]
    },
    "KeyId": {
      "allOf": [
        {
          "$ref": "#/components/schemas/KeyId"
        },
        {
          "description": "<p>The GUID for the customer-managed Amazon Web Services KMS key to use for encryption. This value can be a globally unique identifier, a fully specified ARN to either an alias or a key, or an alias name prefixed by \"alias/\".You can also use a master key owned by Kinesis Data Streams by specifying the alias <code>aws/kinesis</code>.</p> <ul> <li> <p>Key ARN example: <code>arn:aws:kms:us-east-1:123456789012:key/12345678-1234-1234-1234-123456789012</code> </p> </li> <li> <p>Alias ARN example: <code> arn:aws:kms:us-east-1:123456789012:alias/MyAliasName</code> </p> </li> <li> <p>Globally unique key ID example: <code>12345678-1234-1234-1234-123456789012</code> </p> </li> <li> <p>Alias name example: <code>alias/MyAliasName</code> </p> </li> <li> <p>Master key owned by Kinesis Data Streams: <code>alias/aws/kinesis</code> </p> </li> </ul>"
        }
      ]
    },
    "OpenShardCount": {
      "allOf": [
        {
          "$ref": "#/components/schemas/ShardCountObject"
        },
        {
          "description": "The number of open shards in the stream."
        }
      ]
    },
    "ConsumerCount": {
      "allOf": [
        {
          "$ref": "#/components/schemas/ConsumerCountObject"
        },
        {
          "description": "The number of enhanced fan-out consumers registered with the stream."
        }
      ]
    }
  },
  "description": "Represents the output for <a>DescribeStreamSummary</a> "
}