{ "$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 StreamName or the StreamARN." } ] }, "StreamARN": { "allOf": [ { "$ref": "#/components/schemas/ResourceARN" }, { "description": " The Amazon Resource Name (ARN) of the stream. Specify either the StreamName or the StreamARN." } ] }, "EdgeConfig": { "allOf": [ { "$ref": "#/components/schemas/EdgeConfig" }, { "description": "The edge configuration details required to invoke the update process." } ] } } }