AWS transcribe documentation change
Summary
Added IAM policy examples for StartStreamTranscription (HTTP/2) and StartStreamTranscriptionWebSocket actions
Security assessment
This change adds IAM policy examples for streaming transcription operations, which is security documentation for access control. No evidence of addressing a specific security vulnerability - appears to be routine documentation enhancement.
Diff
diff --git a/transcribe/latest/dg/streaming-setting-up.md b/transcribe/latest/dg/streaming-setting-up.md index d7787b8cd..22075729e 100644 --- a//transcribe/latest/dg/streaming-setting-up.md +++ b//transcribe/latest/dg/streaming-setting-up.md @@ -31,0 +32,19 @@ Amazon Transcribe only supports one stream per HTTP/2 session. If you attempt to +JSON + + +**** + + + { + "Version":"2012-10-17", + "Statement": [ + { + "Sid": "myTranscribeHttp2Policy", + "Effect": "Allow", + "Action": "transcribe:StartStreamTranscription", + "Resource": "*" + } + ] + } + + @@ -211,0 +231,19 @@ Amazon Transcribe only supports one stream per WebSocket session. If you attempt +JSON + + +**** + + + { + "Version":"2012-10-17", + "Statement": [ + { + "Sid": "myTranscribeWebsocketPolicy", + "Effect": "Allow", + "Action": "transcribe:StartStreamTranscriptionWebSocket", + "Resource": "*" + } + ] + } + +