AWS Kinesis · Schema
StartEdgeConfigurationUpdateInput
AnalyticsApache FlinkBig DataData ProcessingReal-TimeStreamingVideo
Properties
| Name | Type | Description |
|---|---|---|
| StreamName | object | |
| StreamARN | object | |
| EdgeConfig | object |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "#/components/schemas/StartEdgeConfigurationUpdateInput",
"title": "StartEdgeConfigurationUpdateInput",
"type": "object",
"required": [
"EdgeConfig"
],
"properties": {
"StreamName": {
"allOf": [
{
"$ref": "#/components/schemas/StreamName"
},
{
"description": "The name of the stream whose edge configuration you want to update. Specify either the <code>StreamName</code> or the <code>StreamARN</code>."
}
]
},
"StreamARN": {
"allOf": [
{
"$ref": "#/components/schemas/ResourceARN"
},
{
"description": " The Amazon Resource Name (ARN) of the stream. Specify either the <code>StreamName</code> or the <code>StreamARN</code>."
}
]
},
"EdgeConfig": {
"allOf": [
{
"$ref": "#/components/schemas/EdgeConfig"
},
{
"description": "The edge configuration details required to invoke the update process."
}
]
}
}
}