を使用したコスト配分タグの管理 AWS CLI - Amazon ElastiCache

翻訳は機械翻訳により提供されています。提供された翻訳内容と英語版の間で齟齬、不一致または矛盾がある場合、英語版が優先します。

を使用したコスト配分タグの管理 AWS CLI

を使用して、コスト配分タグ AWS CLI を追加、変更、または削除できます。

コスト配分タグは ElastiCache クラスターに適用されます。タグを付けるクラスターは、 ARN (Amazon リソースネーム) を使用して指定されます。

サンプル arn: arn:aws:elasticache:us-west-2:1234567890:cluster:my-cluster

を使用したタグの一覧表示 AWS CLI

を使用して既存の ElastiCache リソースのタグを AWS CLI 一覧表示するには、list-tags-for-resource オペレーション。

次のコードは AWS CLI 、 を使用して、us-west-2 リージョンの Memcached クラスター上のタグmy-clusterを一覧表示します。

Linux、macOS、Unix の場合:

aws elasticache list-tags-for-resource \ --resource-name arn:aws:elasticache:us-west-2:0123456789:cluster:my-cluster

Windows の場合:

aws elasticache list-tags-for-resource ^ --resource-name arn:aws:elasticache:us-west-2:0123456789:cluster:my-cluster

次のコードは AWS CLI 、 を使用して、us-west-2 リージョンのmy-clusterクラスターmy-cluster-001内の Valkey または Redis OSSノードのタグを一覧表示します。

Linux、macOS、Unix の場合:

aws elasticache list-tags-for-resource \ --resource-name arn:aws:elasticache:us-west-2:0123456789:cluster:my-cluster-001

Windows の場合:

aws elasticache list-tags-for-resource ^ --resource-name arn:aws:elasticache:us-west-2:0123456789:cluster:my-cluster-001

このオペレーションの出力は、リソースのすべてのタグを示した次のリストのようになります。

{ "TagList": [ { "Value": "10110", "Key": "CostCenter" }, { "Value": "EC2", "Key": "Service" } ] }

リソースにタグがない場合、出力は空の になります TagList。

{ "TagList": [] }

詳細については、「」を参照してください AWS CLI 。 ElastiCache list-tags-for-resource.

を使用したタグの追加 AWS CLI

を使用して既存の ElastiCache リソースにタグ AWS CLI を追加するには、add-tags-to-resource CLI オペレーション。タグキーがリソースに存在しない場合は、キーと値がリソースに追加されます。キーが既にリソースに存在する場合、キーに関連付けられた値は新しい値に更新されます。

次のコードは AWS CLI 、 を使用して、 キーServiceと 値Regionelasticacheおよび us-west-2 をそれぞれ my-clusterリージョン us-west-2 のクラスターmy-cluster-001内のノードに追加します。

Memcached

Linux、macOS、Unix の場合:

aws elasticache add-tags-to-resource \ --resource-name arn:aws:elasticache:us-west-2:0123456789:cluster:my-cluster \ --tags Key=Service,Value=elasticache \ Key=Region,Value=us-west-2

Windows の場合:

aws elasticache add-tags-to-resource ^ --resource-name arn:aws:elasticache:us-west-2:0123456789:cluster:my-cluster ^ --tags Key=Service,Value=elasticache ^ Key=Region,Value=us-west-2

Redis

Linux、macOS、Unix の場合:

aws elasticache add-tags-to-resource \ --resource-name arn:aws:elasticache:us-west-2:0123456789:cluster:my-cluster-001 \ --tags Key=Service,Value=elasticache \ Key=Region,Value=us-west-2

Windows の場合:

aws elasticache add-tags-to-resource ^ --resource-name arn:aws:elasticache:us-west-2:0123456789:cluster:my-cluster-001 ^ --tags Key=Service,Value=elasticache ^ Key=Region,Value=us-west-2

このオペレーションの出力は、次のオペレーションのリソースのすべてのタグを示した以下のリストのようになります。

{ "TagList": [ { "Value": "elasticache", "Key": "Service" }, { "Value": "us-west-2", "Key": "Region" } ] }

詳細については、「」を参照してください AWS CLI 。 ElastiCache add-tags-to-resource.

オペレーションを使用して新しいクラスターを作成するときに、 を使用してクラスターにタグ AWS CLI を追加することもできます。create-cache-cluster。 ElastiCache 管理コンソールを使用してクラスターを作成するときにタグを追加することはできません。クラスターを作成した後は、コンソールを使用してクラスターにタグを追加できます。

を使用したタグの変更 AWS CLI

を使用して AWS CLI 、 ElastiCache クラスターのタグを変更できます。

タグを変更するには:

  • 使用アイテム add-tags-to-resource 新しいタグと値を追加するか、既存のタグに関連付けられた値を変更します。

  • 使用アイテム remove-tags-from-resource リソースから指定されたタグを削除します。

どちらのオペレーションでも、指定のクラスターのタグとその値を示すリストが出力されます。

を使用したタグの削除 AWS CLI

を使用して既存の ElastiCache (Memcached) クラスターからタグ AWS CLI を削除するには、remove-tags-from-resource オペレーション。

Memcached の場合、次のコードは AWS CLI を使用して、us-west-2 リージョンmy-clusterのクラスターmy-cluster-001内のノードRegionから キーServiceと を持つタグを削除します。

Linux、macOS、Unix の場合:

aws elasticache remove-tags-from-resource \ --resource-name arn:aws:elasticache:us-west-2:0123456789:cluster:my-cluster \ --tag-keys PM Service

Windows の場合:

aws elasticache remove-tags-from-resource ^ --resource-name arn:aws:elasticache:us-west-2:0123456789:cluster:my-cluster ^ --tag-keys PM Service

Redis の場合、次のコードは AWS CLI を使用して、us-west-2 リージョンmy-clusterのクラスターmy-cluster-001内のノードRegionからキーServiceと を含むタグを削除します。

Linux、macOS、Unix の場合:

aws elasticache remove-tags-from-resource \ --resource-name arn:aws:elasticache:us-west-2:0123456789:cluster:my-cluster-001 \ --tag-keys PM Service

Windows の場合:

aws elasticache remove-tags-from-resource ^ --resource-name arn:aws:elasticache:us-west-2:0123456789:cluster:my-cluster-001 ^ --tag-keys PM Service

このオペレーションの出力は、次のオペレーションのリソースのすべてのタグを示した以下のリストのようになります。

{ "TagList": [] }

詳細については、「」を参照してください AWS CLI 。 ElastiCache remove-tags-from-resource.