Inital Commit

This commit is contained in:
Brett Woodruff
2024-06-10 12:24:37 -04:00
commit 106024bcb4
2223 changed files with 241071 additions and 0 deletions

View File

@@ -0,0 +1,5 @@
{
"version": "1.0",
"examples": {
}
}

View File

@@ -0,0 +1,43 @@
{
"pagination": {
"DescribeStream": {
"input_token": "ExclusiveStartShardId",
"limit_key": "Limit",
"more_results": "StreamDescription.HasMoreShards",
"output_token": "StreamDescription.Shards[-1].ShardId",
"result_key": "StreamDescription.Shards",
"non_aggregate_keys": [
"StreamDescription.StreamARN",
"StreamDescription.StreamName",
"StreamDescription.StreamStatus",
"StreamDescription.RetentionPeriodHours",
"StreamDescription.EnhancedMonitoring",
"StreamDescription.EncryptionType",
"StreamDescription.KeyId",
"StreamDescription.StreamCreationTimestamp"
]
},
"ListStreams": {
"input_token": "NextToken",
"limit_key": "Limit",
"more_results": "HasMoreStreams",
"output_token": "NextToken",
"result_key": [
"StreamNames",
"StreamSummaries"
]
},
"ListShards": {
"input_token": "NextToken",
"limit_key": "MaxResults",
"output_token": "NextToken",
"result_key": "Shards"
},
"ListStreamConsumers": {
"input_token": "NextToken",
"limit_key": "MaxResults",
"output_token": "NextToken",
"result_key": "Consumers"
}
}
}

View File

@@ -0,0 +1,30 @@
{
"version": 2,
"waiters": {
"StreamExists": {
"delay": 10,
"operation": "DescribeStream",
"maxAttempts": 18,
"acceptors": [
{
"expected": "ACTIVE",
"matcher": "path",
"state": "success",
"argument": "StreamDescription.StreamStatus"
}
]
},
"StreamNotExists": {
"delay": 10,
"operation": "DescribeStream",
"maxAttempts": 18,
"acceptors": [
{
"expected": "ResourceNotFoundException",
"matcher": "error",
"state": "success"
}
]
}
}
}