|
def | prerun (self, *args, **kwargs) |
|
def | get_stack (self, name) |
|
|
string | stacks_bucket = 'homecu.odyssey.stacks' |
|
Definition at line 127 of file s3.py.
◆ get_stack()
def cli.s3.S3BucketMixin.get_stack |
( |
|
self, |
|
|
|
name |
|
) |
| |
Load a tracker object from S3. If the file does not exist just
return None.
Definition at line 136 of file s3.py.
136 def get_stack(self, name):
137 """ Load a tracker object from S3. If the file does not exist just 139 stack_obj = self.stacks.Object(name)
142 except botocore.exceptions.ClientError
as e:
143 if e.response[
'Error'][
'Code'] !=
"404":
146 return StackTracker(stack_obj)
The documentation for this class was generated from the following file: