Viewing flow maintenance status
You can view the maintenance status of your flows in the MediaConnect console or by using the AWS CLI.
To view flow maintenance status (console)
-
Open the MediaConnect console at https://console.aws.amazon.com/mediaconnect/
. -
In the navigation pane, choose Flows.
-
The Maintenance window column displays the maintenance status for each flow. If maintenance is required, the column shows the scheduled date.
-
To view detailed maintenance information for a specific flow, choose the flow name to open its details page.
To view flow maintenance status (AWS CLI)
Use the list-flows command to see maintenance status across all
flows, or the describe-flow command for detailed information about
a specific flow.
The response includes maintenance details in the
Maintenance object:
{ "Flows": [ { "AvailabilityZone": "us-west-2d", "Description": "Example flow description", "FlowArn": "arn:aws:mediaconnect:us-east-1:111122223333:flow:1-23aBC45dEF67hiJ8-12AbC34DE5fG:BasketballGame", "Name": "BasketballGame", "SourceType": "OWNED", "Status": "STANDBY", "Maintenance": { "MaintenanceDay": "Monday", "MaintenanceStartHour": "08:00" } }, { "AvailabilityZone": "us-west-2b", "Description": "Example flow description", "FlowArn": "arn:aws:mediaconnect:us-east-1:111122223333:flow:2-3aBC45dEF67hiJ8k-2AbC34DE5fGa6:AwardsShow", "Name": "AwardsShow", "SourceType": "OWNED", "Status": "ACTIVE", "Maintenance": { "MaintenanceDay": "Saturday", "MaintenanceDeadline": "2025-10-25T22:15:56Z", "MaintenanceScheduledDate": "2025-10-18", "MaintenanceStartHour": "23:00" } } ] }