檢視容器政策 - AWS Elemental MediaStore

本文為英文版的機器翻譯版本,如內容有任何歧義或不一致之處,概以英文版為準。

檢視容器政策

您可以使用主控台或 AWS CLI 來檢視容器中依資源而定的政策。

若要檢視容器政策 (主控台)
  1. 開啟MediaStore主控台https://console.aws.amazon.com/mediastore/

  2. Containers (容器) 頁面上,選擇容器名稱。

    容器詳細資訊頁面隨即出現。政策會顯示在 Container policy (容器政策) 區段中。

若要檢視容器政策 (AWS CLI)
  • 在 AWS CLI 中,使用 get-container-policy 命令:

    aws mediastore get-container-policy --container-name ExampleLiveDemo --region us-west-2

    以下範例顯示傳回值:

    { "Policy": { "Version": "2012-10-17", "Statement": [ { "Sid": "PublicReadOverHttps", "Effect": "Allow", "Principal": { "AWS": "arn:aws:iam::111122223333:root", }, "Action": [ "mediastore:GetObject", "mediastore:DescribeObject", ], "Resource": "arn:aws:mediastore:us-west-2:111122223333:container/ExampleLiveDemo/*", "Condition": { "Bool": { "aws:SecureTransport": "true" } } } ] } }