forked from soumilshah1995/Learn-AWS-with-Python-Boto-3
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathscheduling ec2 instance.py
67 lines (46 loc) · 1.43 KB
/
scheduling ec2 instance.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
__Author__ = 'Soumil Nitin Shah'
__Version__ = "0.0.1"
__Email__ = "[email protected]"
__Github__ = "https://github.com/soumilshah1995?tab=repositories"
try:
import boto3
print("All Modules are Loaded ......")
except Exception as e:
print("Some Modules are missings {}".format(e))
class EC2Master(object):
def __init__(self):
self.client = boto3.client('ec2')
def stop(self, InstanceId = []):
"""
:param InstanceId: List of Instance ID
:return:
"""
response = self.client.stop_instances(
InstanceIds=InstanceId)
return response
def get_instanceid(self):
"""
:return: List of Instance ID
"""
id = []
response = self.client.describe_instances()
for reservation in response["Reservations"]:
for instance in reservation["Instances"]:
id.append(instance["InstanceId"])
return id
def start(self, InstanceId = []):
"""
:param InstanceId: List of Instance ID
:return:
"""
response = self.client.start_instances(
InstanceIds=InstanceId)
return response
if __name__ == "__main__":
obj = EC2Master()
# Instance ID in a List
data = obj.get_instanceid()
print("Instance Id {}".format(data))
# start the EC2 Machine
obj.stop(InstanceId=data)
print("Machine is Turned On ... . .. . ")