기계 번역으로 제공되는 번역입니다. 제공된 번역과 원본 영어의 내용이 상충하는 경우에는 영어 버전이 우선합니다.
명령 데이터 백(aws_opsworks_command)
중요
이 AWS OpsWorks Stacks 서비스는 2024년 5월 26일에 수명이 종료되었으며 신규 고객과 기존 고객 모두 사용할 수 없습니다. 고객은 가능한 한 빨리 워크로드를 다른 솔루션으로 마이그레이션할 것을 강력히 권장합니다. 마이그레이션에 대해 궁금한 점이 있으면 AWS re:Post 또는 Premium AWS
AWS OpsWorks Stacks가 하나 이상의 인스턴스에서 실행하는 명령의 설정을 나타냅니다.
다음 예제는 Chef 검색을 사용하여 단일 데이터 백 항목, 그런 다음 다중 데이터 백 항목을 검색하여 명령의 유형과 전송 시점을 포함하는 메시지를 Chef 로그에 기록하는 방법을 보여줍니다.
command = search("aws_opsworks_command").first Chef::Log.info("********** The command's type is '#{command['type']}' **********") Chef::Log.info("********** The command was sent at '#{command['sent_at']}' **********") search("aws_opsworks_command").each do |command| Chef::Log.info("********** The command's type is '#{command['type']}' **********") Chef::Log.info("********** The command was sent at '#{command['sent_at']}' **********") end
- args
-
명령의 인수(문자열).
- command_id
-
AWS OpsWorks Stacks (문자열) 로 할당되는 명령의 무작위 고유 식별자입니다.
- iam_user_arn
-
명령이 고객에 의해 생성되는 경우, 명령을 생성한 사용자의 Amazon 리소스 이름(ARN)(문자열).
- instance-id
-
명령이 실행되는 인스턴스의 식별자(문자열).
- sent_at
-
AWS OpsWorks Stacks가 명령을 실행한 시점의 타임스탬프 (문자열).
- type
-
명령 유형(문자열). 유효한 값으로는 다음이 포함됩니다.
-
"configure"
-
"deploy"
-
"deregister"
-
"execute_recipes"
-
"grant_remote_access"
-
"install_dependencies"
-
"restart"
-
"revoke_remote_access"
-
"rollback"
-
"setup"
-
"shutdown"
-
"start"
-
"stop"
-
"sync_remote_users"
-
"undeploy"
-
"update_agent"
-
"update_custom_cookbooks"
-
"update_dependencies"
-