2
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 3 years have passed since last update.

Amazon Rekognition カスタムラベルのProject Arnの調べ方

Posted at

Amazon RekognitionカスタムラベルをCLIとかSDKで使う場合にProject Arnをパラメータとして渡さないといけないんだけど、マネジメントコンソールに書いてない!

途中まで推測つくんだけど、最後の数値がわからない・・・

arn:aws:rekognition:ap-northeast-1:999999999999:project/#{プロジェクト名}/#{謎の数字・・・}

ということで、CLIで調べるしかなさそう

describe.sh
$ aws rekognition describe-projects
{
    "ProjectDescriptions": [
        {
            "ProjectArn": "arn:aws:rekognition:ap-northeast-1:999999999999:project/rekognition_custom_label_project/9999999999999",
            "CreationTimestamp": "2021-09-09T09:09:09.090000+09:00",
            "Status": "CREATED"
        }
    ]
}
2
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
2
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?