execute-api:ManageConnections is a Write access-level action in the execute-api service. Grants permission to access the Websocket @connections Route
ARNs that execute-api:ManageConnections can be scoped to in an IAM policy.
Keys you can use in the Condition block of a policy that grants execute-api:ManageConnections.
Filters access by the DomainName ARN the API is called from
A minimal policy that allows execute-api:ManageConnections. Replace "Resource": "*" with a specific ARN to follow least privilege.
{
"Version": "2012-10-17",
"Statement": [
{
"Sid": "AllowExecuteapiManageConnections",
"Effect": "Allow",
"Action": "execute-api:ManageConnections",
"Resource": "*"
}
]
}