基于资源的策略示例 AWS Elemental MediaTailor - AWS Elemental MediaTailor

本文属于机器翻译版本。若本译文内容与英语原文存在差异,则一律以英文原文为准。

基于资源的策略示例 AWS Elemental MediaTailor

要了解如何将基于资源的策略附加到频道,请参阅使用 MediaTailor 控制台创建频道

匿名访问

考虑以下Allow政策。此政策生效后, MediaTailor允许匿名访问策略中频道资源的mediatailor:GetManifest操作。这种情况发生在哪里 region 是 AWS 区域,accountID 是你的 AWS 账户 身份证,而且 channelName 是频道资源的名称。

{ "Version": "2012-10-17", "Statement": [ { "Sid": "AllowAnonymous", "Effect": "Allow", "Principal": "*", "Action": "mediatailor:GetManifest", "Resource": "arn:aws:mediatailor:region:accountID:channel/channelName" } ] }

跨账户存取

考虑以下Allow政策。此政策生效后, MediaTailor允许跨账户对策略中的频道资源执行mediatailor:GetManifest操作。这种情况发生在哪里 region 是 AWS 区域,accountID 是你的 AWS 账户 身份证,而且 channelName 是频道资源的名称。

{ "Version": "2012-10-17", "Statement": [ { "Sid": "AllowCrossAccountAccess", "Effect": "Allow", "Principal": {"AWS": "arn:aws:iam::111111111111:root"}, "Action": "mediatailor:GetManifest", "Resource": "arn:aws:mediatailor:region:accountID:channel/channelName" } ] }