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 1 year has passed since last update.

Redshift Serverlessにタグ付けする

Last updated at Posted at 2022-09-16

2022年9月現在、Redshift ServerlessにはAWS CLIを使用してのみタグを付与できる。

事前準備

AWS CLIを最新バージョンにする。
redshift-serverlessはCLIのバージョンが古いと使えない。
https://docs.aws.amazon.com/ja_jp/cli/latest/userguide/getting-started-install.html

タグを付与できるリソース

  • 名前空間
  • ワークグループ

コマンド

タグ関連で使用可能なオペレーションは以下の3つ

  • TagResource(タグを付与する)
aws redshift-serverless tag-resource --resource-arn 【名前空間 or ワークグループのarn】 --tags key="Name",value="test"
  • UntagResource(タグを削除する)
aws redshift-serverless untag-resource --resource-arn 【名前空間 or ワークグループのarn】 --tag-keys Name
  • ListTagsForResource(タグの一覧を表示する)
aws redshift-serverless list-tags-for-resource --resource-arn 【名前空間 or ワークグループのarn】

参考ページ

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?