Best Python code snippet using localstack_python
client.pyi
Source:client.pyi
...492 managed nodes.493 [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/1.24.58/reference/services/ssm.html#SSM.Client.create_association)494 [Show boto3-stubs documentation](https://vemel.github.io/boto3_stubs_docs/mypy_boto3_ssm/client.html#create_association)495 """496 def create_association_batch(497 self, *, Entries: List["CreateAssociationBatchRequestEntryTypeDef"]498 ) -> CreateAssociationBatchResultTypeDef:499 """500 Associates the specified Amazon Web Services Systems Manager document (SSM501 document) with the specified managed nodes or targets.502 [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/1.24.58/reference/services/ssm.html#SSM.Client.create_association_batch)503 [Show boto3-stubs documentation](https://vemel.github.io/boto3_stubs_docs/mypy_boto3_ssm/client.html#create_association_batch)504 """505 def create_document(506 self,507 *,508 Content: str,509 Name: str,510 Requires: List["DocumentRequiresTypeDef"] = None,...
client.py
Source:client.py
...18 def create_activation(self, IamRole: str, Description: str = None, DefaultInstanceName: str = None, RegistrationLimit: int = None, ExpirationDate: datetime = None, Tags: List = None) -> Dict:19 pass20 def create_association(self, Name: str, DocumentVersion: str = None, InstanceId: str = None, Parameters: Dict = None, Targets: List = None, ScheduleExpression: str = None, OutputLocation: Dict = None, AssociationName: str = None, AutomationTargetParameterName: str = None, MaxErrors: str = None, MaxConcurrency: str = None, ComplianceSeverity: str = None) -> Dict:21 pass22 def create_association_batch(self, Entries: List) -> Dict:23 pass24 def create_document(self, Content: str, Name: str, Attachments: List = None, VersionName: str = None, DocumentType: str = None, DocumentFormat: str = None, TargetType: str = None, Tags: List = None) -> Dict:25 pass26 def create_maintenance_window(self, Name: str, Schedule: str, Duration: int, Cutoff: int, AllowUnassociatedTargets: bool, Description: str = None, StartDate: str = None, EndDate: str = None, ScheduleTimezone: str = None, ClientToken: str = None, Tags: List = None) -> Dict:27 pass28 def create_patch_baseline(self, Name: str, OperatingSystem: str = None, GlobalFilters: Dict = None, ApprovalRules: Dict = None, ApprovedPatches: List = None, ApprovedPatchesComplianceLevel: str = None, ApprovedPatchesEnableNonSecurity: bool = None, RejectedPatches: List = None, RejectedPatchesAction: str = None, Description: str = None, Sources: List = None, ClientToken: str = None, Tags: List = None) -> Dict:29 pass30 def create_resource_data_sync(self, SyncName: str, S3Destination: Dict) -> Dict:31 pass32 def delete_activation(self, ActivationId: str) -> Dict:33 pass34 def delete_association(self, Name: str = None, InstanceId: str = None, AssociationId: str = None) -> Dict:35 pass36 def delete_document(self, Name: str) -> Dict:...
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.
You could also refer to video tutorials over LambdaTest YouTube channel to get step by step demonstration from industry experts.
Get 100 minutes of automation test minutes FREE!!