How to use stop_automation_execution method in localstack

Best Python code snippet using localstack_python

client.pyi

Source:client.pyi Github

copy

Full Screen

...1804 Manager session.1805 [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/1.24.58/reference/services/ssm.html#SSM.Client.start_session)1806 [Show boto3-stubs documentation](https://vemel.github.io/boto3_stubs_docs/mypy_boto3_ssm/client.html#start_session)1807 """1808 def stop_automation_execution(1809 self, *, AutomationExecutionId: str, Type: StopTypeType = None1810 ) -> Dict[str, Any]:1811 """1812 Stop an Automation that is currently running.1813 [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/1.24.58/reference/services/ssm.html#SSM.Client.stop_automation_execution)1814 [Show boto3-stubs documentation](https://vemel.github.io/boto3_stubs_docs/mypy_boto3_ssm/client.html#stop_automation_execution)1815 """1816 def terminate_session(self, *, SessionId: str) -> TerminateSessionResponseTypeDef:1817 """1818 Permanently ends a session and closes the data connection between the Session1819 Manager client and SSM Agent on the managed node.1820 [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/1.24.58/reference/services/ssm.html#SSM.Client.terminate_session)1821 [Show boto3-stubs documentation](https://vemel.github.io/boto3_stubs_docs/mypy_boto3_ssm/client.html#terminate_session)1822 """...

Full Screen

Full Screen

client.py

Source:client.py Github

copy

Full Screen

...218 def start_automation_execution(self, DocumentName: str, DocumentVersion: str = None, Parameters: Dict = None, ClientToken: str = None, Mode: str = None, TargetParameterName: str = None, Targets: List = None, TargetMaps: List = None, MaxConcurrency: str = None, MaxErrors: str = None, TargetLocations: List = None) -> Dict:219 pass220 def start_session(self, Target: str, DocumentName: str = None, Parameters: Dict = None) -> Dict:221 pass222 def stop_automation_execution(self, AutomationExecutionId: str, Type: str = None) -> Dict:223 pass224 def terminate_session(self, SessionId: str) -> Dict:225 pass226 def update_association(self, AssociationId: str, Parameters: Dict = None, DocumentVersion: str = None, ScheduleExpression: str = None, OutputLocation: Dict = None, Name: str = None, Targets: List = None, AssociationName: str = None, AssociationVersion: str = None, AutomationTargetParameterName: str = None, MaxErrors: str = None, MaxConcurrency: str = None, ComplianceSeverity: str = None) -> Dict:227 pass228 def update_association_status(self, Name: str, InstanceId: str, AssociationStatus: Dict) -> Dict:229 pass230 def update_document(self, Content: str, Name: str, Attachments: List = None, VersionName: str = None, DocumentVersion: str = None, DocumentFormat: str = None, TargetType: str = None) -> Dict:231 pass232 def update_document_default_version(self, Name: str, DocumentVersion: str) -> Dict:233 pass234 def update_maintenance_window(self, WindowId: str, Name: str = None, Description: str = None, StartDate: str = None, EndDate: str = None, Schedule: str = None, ScheduleTimezone: str = None, Duration: int = None, Cutoff: int = None, AllowUnassociatedTargets: bool = None, Enabled: bool = None, Replace: bool = None) -> Dict:235 pass236 def update_maintenance_window_target(self, WindowId: str, WindowTargetId: str, Targets: List = None, OwnerInformation: str = None, Name: str = None, Description: str = None, Replace: bool = None) -> Dict:...

Full Screen

Full Screen

Automation Testing Tutorials

Learn to execute automation testing from scratch with LambdaTest Learning Hub. Right from setting up the prerequisites to run your first automation test, to following best practices and diving deeper into advanced test scenarios. LambdaTest Learning Hubs compile a list of step-by-step guides to help you be proficient with different test automation frameworks i.e. Selenium, Cypress, TestNG etc.

LambdaTest Learning Hubs:

YouTube

You could also refer to video tutorials over LambdaTest YouTube channel to get step by step demonstration from industry experts.

Run localstack automation tests on LambdaTest cloud grid

Perform automation testing on 3000+ real desktop and mobile devices online.

Try LambdaTest Now !!

Get 100 minutes of automation test minutes FREE!!

Next-Gen App & Browser Testing Cloud

Was this article helpful?

Helpful

NotHelpful