in awsglue/blueprint/job.py [0:0]
def __init__(self, **kwargs):
self.__dict__['_validator'] = {
'Name': (str, True),
'ScriptLocation': (str, True),
'PythonVersion': (str, False)
}
self.Name = kwargs.get('Name')
self.ScriptLocation = kwargs.get('ScriptLocation')
self.PythonVersion = kwargs.get('PythonVersion')