getClusterStackイベント - AWS ParallelCluster

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

getClusterStackイベント

クラスターのスタックに関連するイベントを取得します。

注記

バージョン 3.6.0 以降、 はネストされたスタック AWS ParallelCluster を使用して、キューとコンピューティングリソースに関連付けられたリソースを作成します。GetClusterStackEvents API と pcluster get-cluster-stack-events コマンドは、クラスターメインスタックイベントのみを返します。キューやコンピューティングリソースに関連するイベントを含むクラスタースタックイベントは、 CloudFormation コンソールで表示できます。

リクエストの構文

GET /v3/clusters/{clusterName}/stackevents { "nextToken": "string", "region": "string" }

リクエスト本文

clusterName

クラスターの名前。

タイプ: 文字列

必須: はい

nextToken

ページ分割されたリクエストに使用するトークン。

タイプ: 文字列

必須: いいえ

region

クラスター AWS リージョン がある 。

タイプ: 文字列

必須: いいえ

レスポンスの構文

{ "nextToken": "string", "events": [ { "stackId": "string", "eventId": "string", "stackName": "string", "logicalResourceId": "string", "physicalResourceId": "string", "resourceType": "string", "timestamp": "2019-08-24T14:15:22Z", "resourceStatus": "CREATE_IN_PROGRESS", "resourceStatusReason": "string", "resourceProperties": "string", "clientRequestToken": "string" } ] }

レスポンス本文

events

フィルタリングされたイベントのリスト。

clientRequestToken

このイベントを生成したアクションに渡されたトークン。

タイプ: 文字列

eventId

このイベントの一意の ID。

タイプ: 文字列

logicalResourceId

テンプレートに定義されたリソースの論理名。

タイプ: 文字列

physicalResourceId

リソースの物理インスタンスに関連付けられている名前または一意の識別子。

タイプ: 文字列

resourceProperties

リソースの作成に使用されるプロパティのBLOB。

タイプ: 文字列

resourceStatus

リソースステータス。

タイプ: 文字列

有効な値: CREATE_IN_PROGRESS | CREATE_FAILED | CREATE_COMPLETE | DELETE_IN_PROGRESS | DELETE_FAILED | DELETE_COMPLETE | DELETE_SKIPPED | UPDATE_IN_PROGRESS | UPDATE_FAILED | UPDATE_COMPLETE | IMPORT_FAILED | IMPORT_COMPLETE | IMPORT_IN_PROGRESS | IMPORT_ROLLBACK_IN_PROGRESS | IMPORT_ROLLBACK_FAILED | IMPORT_ROLLBACK_COMPLETE

resourceStatusReason

リソースに関連する成功または失敗のメッセージ。

タイプ: 文字列

resourceType

リソースのタイプ。

タイプ: 文字列

stackId

スタックのインスタンスの一意の ID 名。

タイプ: 文字列

stackName

スタックに関連付けられた名前。

タイプ: 文字列

timestamp

ステータスが更新された時刻。

型: 日時

nextToken

ページ分割されたリクエストに使用するトークン。

タイプ: 文字列

Python

リクエスト

$ get_cluster_stack_events(cluster_name_3x)

200 レスポンス

{ 'events': [ { 'event_id': '590b3820-b081-11ec-985e-0a7af5751497', 'logical_resource_id': 'cluster_name_3x', 'physical_resource_id': 'arn:aws:cloudformation:us-east-1:123456789012:stack/cluster_name_3x/11a59710-b080-11ec-b8bd-129def1380e9', 'resource_status': 'CREATE_COMPLETE', 'resource_type': 'AWS::CloudFormation::Stack', 'stack_id': 'arn:aws:cloudformation:us-east-1:123456789012:stack/cluster_name_3x/11a59710-b080-11ec-b8bd-129def1380e9', 'stack_name': 'cluster_name_3x', 'timestamp': datetime.datetime(2022, 3, 30, 23, 30, 13, 268000, tzinfo=tzlocal()) }, ... ] }