CLI로 StartAutomationExecution
사용
다음 코드 예제는 StartAutomationExecution
의 사용 방법을 보여 줍니다.
- CLI
-
- AWS CLI
-
예제 1: 자동화 문서를 실행하는 방법
다음
start-automation-execution
예제에서는 자동화 문서를 실행합니다.aws ssm start-automation-execution \ --document-name
"AWS-UpdateLinuxAmi"
\ --parameters"AutomationAssumeRole=arn:aws:iam::123456789012:role/SSMAutomationRole,SourceAmiId=ami-EXAMPLE,IamInstanceProfileName=EC2InstanceRole"
출력:
{ "AutomationExecutionId": "4105a4fc-f944-11e6-9d32-0a1b2EXAMPLE" }
자세한 내용은 AWS Systems Manager 사용 설명서의 수동으로 자동화 워크플로 실행을 참조하세요.
예제 2: 공유 자동화 문서를 실행하는 방법
다음
start-automation-execution
예제에서는 공유 자동화 문서를 실행합니다.aws ssm start-automation-execution \ --document-name
"arn:aws:ssm:us-east-1:123456789012:document/ExampleDocument"
출력:
{ "AutomationExecutionId": "4105a4fc-f944-11e6-9d32-0a1b2EXAMPLE" }
자세한 내용은 AWS Systems Manager 사용 설명서의 공유 SSM 문서 사용을 참조하세요.
-
API 세부 정보는 AWS CLI 명령 참조의 StartAutomationExecution
을 참조하세요.
-
- PowerShell
-
- PowerShell용 도구
-
예제 1: 이 예제에서는 자동화 역할, AMI 소스 ID 및 Amazon EC2 인스턴스 역할을 지정하는 문서를 실행합니다.
Start-SSMAutomationExecution -DocumentName AWS-UpdateLinuxAmi -Parameter @{'AutomationAssumeRole'='arn:aws:iam::123456789012:role/SSMAutomationRole';'SourceAmiId'='ami-f173cc91';'InstanceIamRole'='EC2InstanceRole'}
출력:
3a532a4f-0382-11e7-9df7-6f11185f6dd1
-
API 세부 정보는 AWS Tools for PowerShell Cmdlet 참조의 StartAutomationExecution을 참조하세요.
-
AWS SDK 개발자 가이드 및 코드 예시의 전체 목록은 AWS SDK를 사용하여 Systems Manager 사용 단원을 참조하세요. 이 주제에는 시작하기에 대한 정보와 이전 SDK 버전에 대한 세부 정보도 포함되어 있습니다.
SendCommand
StartSession