I created and configured Data Pipeline to run AWS CLI commands that stop and start Amazon EC2 instances at scheduled intervals, but after I activated it, then data pipeline status is going failed like this picture below:
I confuse about its parameter that If filled is like this:
aws ec2 start-instances --instance-ids i-0bbd2c85 --region ap-southeast-1a;
aws ec2 start-instances --instance-ids i-1721b699 --region ap-southeast-1a;
aws ec2 start-instances --instance-ids i-1321b69d --region ap-southeast-1a;
aws ec2 start-instances --instance-ids i-1121b69f --region ap-southeast-1a;
aws ec2 stop-instances --instance-ids i-0bbd2c85 --region ap-southeast-1a;
aws ec2 stop-instances --instance-ids i-1721b699 --region ap-southeast-1a;
aws ec2 stop-instances --instance-ids i-1321b69d --region ap-southeast-1a;
aws ec2 stop-instances --instance-ids i-1121b69f --region ap-southeast-1a;
Before I activate it, there are also warning like those below: enter image description here